rio/.woodpecker.yml
Alexander "PapaTutuWawa 6028d3fe76
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: Try to fix 'when' again
2024-01-13 18:00:10 +01:00

16 lines
369 B
YAML

steps:
build:
image: "golang:1.21.5-alpine"
commands:
- go build ./cmd/rio
- go test $(go list ./... | grep -v /vendor/)
when:
- path: "**/*.go"
lint:
image: "golang:1.21.5-alpine"
commands:
- go fmt $(go list ./... | grep -v /vendor/)
- go vet $(go list ./... | grep -v /vendor/)
when:
- path: "**/*.go"