2020-05-03 09:02:27 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
type: docker
|
|
|
|
steps:
|
|
|
|
- name: Build
|
2020-05-03 09:11:14 +00:00
|
|
|
image: mcr.microsoft.com/dotnet/core/sdk:3.1
|
2020-05-03 09:02:27 +00:00
|
|
|
commands:
|
|
|
|
- dotnet build -c Release
|
|
|
|
- name: Tests
|
2020-05-03 09:11:14 +00:00
|
|
|
image: mcr.microsoft.com/dotnet/core/sdk:3.1
|
2020-05-03 09:02:27 +00:00
|
|
|
commands:
|
|
|
|
- dotnet test -v n
|