You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lenpaste/.woodpecker/test_golang.yml

21 lines
320 B
YAML

when:
event: [push, pull_request]
branch: develop
path: ["**/*.go", ".woodpecker/test_golang.yml"]
matrix:
GO_VERSION:
- 1.16
- 1.17
- 1.18
- 1.19
pipeline:
build:
image: golang:${GO_VERSION}
pull: true
commands:
- go mod download
- go test ./...
- go vet ./...