21 lines
309 B
YAML
21 lines
309 B
YAML
image: mcr.microsoft.com/dotnet/sdk:5.0
|
|
|
|
stages:
|
|
- test
|
|
- release
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- dotnet tool restore
|
|
- dotnet nuke Test
|
|
|
|
protobuf-lint:
|
|
stage: test
|
|
image:
|
|
name: docker.io/bufbuild/buf:latest
|
|
entrypoint: [""]
|
|
script:
|
|
- cd api/
|
|
- buf ls-files
|
|
- buf lint
|