PkmnLib.NET/.drone.yml
Deukhoofd d103fccdc6
All checks were successful
continuous-integration/drone/push Build is passing
Tweaks for CI build
2025-05-05 17:31:30 +02:00

17 lines
578 B
YAML

---
kind: pipeline
name: default
type: docker
steps:
- name: test-debug-linux
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
environment:
HUSKY: 0
TERM: xterm
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true
DOTNET_CONSOLE_ANSI_COLOR: true
commands:
- dotnet restore PkmnLib.NET.slnx --nologo --verbosity quiet
- dotnet build PkmnLib.NET.slnx -c Release --nologo --verbosity quiet
- dotnet test PkmnLib.NET.slnx -c Release --nologo --no-restore --no-build