diff --git a/.woodpecker.yml b/.woodpecker.yml index ea82db2..6a2510e 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,9 +1,15 @@ pipeline: build: - image: golang + image: golang:${GO_VERSION} commands: - go build main.go - go test -v ./... when: branch: master event: [push, pull_request, tag, deployment] + +matrix: + GO_VERSION: + - "1.17" + - "1.16" + - "latest"