diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..6a2510e --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +pipeline: + build: + 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"