11 lines
159 B
YAML
11 lines
159 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: "Build and test"
|
|
|
|
steps:
|
|
- name: test
|
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
commands:
|
|
- dotnet build
|
|
- dotnet test
|