ci: add server build script

This commit is contained in:
Timothy Schenk 2023-08-13 18:34:10 +02:00
parent 2705715e8c
commit abd82d6266

View file

@ -0,0 +1,10 @@
name: Test if Server can be built
run-name: ${{ gitea.actor }} is building the Server application
on: [push]
jobs:
build-server:
runs-on: mcr.microsoft.com/dotnet/sdk:latest
steps:
- 'dotnet restore --packages'
- 'dotnet build --no-restore'