12 lines
152 B
YAML
12 lines
152 B
YAML
image: mcr.microsoft.com/dotnet/sdk:5.0
|
|
|
|
stages:
|
|
- test
|
|
- release
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- dotnet tool restore
|
|
- dotnet nuke Test
|
|
|