continuity/.gitea/workflows/server.yaml
Timothy Schenk a3a86c9284
Some checks failed
Test if Server can be built / build-server (push) Failing after 21s
fix: test build script
2023-10-27 19:57:30 +02:00

17 lines
385 B
YAML

name: Test if Server can be built
run-name: ${{ gitea.actor }} is building the Server application
on: [ push ]
jobs:
build-server:
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: https://github.com/actions/setup-dotnet@v3
with:
dotnet-version: |
7.0
- run: |
chmod +x ./build.sh
./build.sh
nuke