Deukhoofd 067ccc883f
All checks were successful
continuous-integration/drone/push Build is passing
Build / Build (push) Successful in 2m3s
Test gitea action
2025-05-17 18:06:24 +02:00

22 lines
783 B
YAML

name: Build
run-name: Build for ${{ gitea.actor }}
on: [ push, pull_request ]
jobs:
Build:
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x
- name: Restore
run: dotnet restore PkmnLib.NET.slnx --nologo --verbosity quiet
- name: Build
run: dotnet build PkmnLib.NET.slnx -c Release --nologo --verbosity quiet -p:NoWarn=CS1591
- name: Test
run: dotnet test PkmnLib.NET.slnx -c Release --nologo --no-restore --no-build