2023-08-13 18:34:10 +02:00
|
|
|
name: Test if Server can be built
|
|
|
|
run-name: ${{ gitea.actor }} is building the Server application
|
2023-08-13 18:52:46 +02:00
|
|
|
on: [ push ]
|
2023-08-13 18:34:10 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-server:
|
2023-08-13 18:52:46 +02:00
|
|
|
container: mcr.microsoft.com/dotnet/sdk:latest
|
2023-08-13 18:34:10 +02:00
|
|
|
steps:
|
2023-08-13 18:52:46 +02:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-08-13 18:41:18 +02:00
|
|
|
commands:
|
|
|
|
- dotnet restore --packages
|
|
|
|
- dotnet build --no-restore
|