12345678910111213141516171819 |
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
- stages:
- - build
- - test
- variables:
- test: "Example.Test"
- build:
- stage: build
- script:
- - export PATH="$PATH:/root/.dotnet/tools"
- - "dotnet build"
- test:
- stage: test
- script:
- - "dotnet test"
|