2023-08-13 16:34:10 +00:00
|
|
|
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:
|
2023-08-13 16:36:38 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-08-13 16:41:18 +00:00
|
|
|
commands:
|
|
|
|
- dotnet restore --packages
|
|
|
|
- dotnet build --no-restore
|