Timothy Schenk
81001c71a0
Some checks failed
Test if Server can be built / build-server (push) Failing after 19s
14 lines
354 B
YAML
14 lines
354 B
YAML
name: Test if Server can be built
|
|
run-name: ${{ gitea.actor }} is building the Server application
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
build-server:
|
|
container: mcr.microsoft.com/dotnet/sdk:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
commands:
|
|
- dotnet restore --packages
|
|
- dotnet build --no-restore
|