11 lines
263 B
YAML
11 lines
263 B
YAML
|
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'
|