2023-08-13 16:34:10 +00:00
|
|
|
name: Test if Server can be built
|
|
|
|
run-name: ${{ gitea.actor }} is building the Server application
|
2023-08-13 16:52:46 +00:00
|
|
|
on: [ push ]
|
2023-08-13 16:34:10 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-server:
|
|
|
|
steps:
|
2023-08-13 16:58:54 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup dotnet
|
|
|
|
uses: https://github.com/actions/setup-dotnet@v3
|
|
|
|
with:
|
2023-10-27 18:29:06 +00:00
|
|
|
dotnet-version: 7.0
|
2023-10-27 17:52:19 +00:00
|
|
|
- run: |
|
2023-10-27 17:57:30 +00:00
|
|
|
chmod +x ./build.sh
|
2023-10-27 18:09:10 +00:00
|
|
|
./build.sh --root .
|