rio/.woodpecker.yml
Alexander "PapaTutuWawa 2d4ecc40cb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Run tests in the CI
2024-01-01 20:16:49 +01:00

11 lines
300 B
YAML

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