ezshare/.woodpecker.yml

16 lines
255 B
YAML
Raw Normal View History

2022-01-03 18:41:01 +00:00
pipeline:
build:
2022-01-03 19:12:10 +00:00
image: golang:${GO_VERSION}
2022-01-03 18:41:01 +00:00
commands:
2022-01-03 18:43:36 +00:00
- go build main.go
- go test -v ./...
2022-01-03 18:46:49 +00:00
when:
2022-01-03 18:59:20 +00:00
branch: master
2022-01-03 18:46:49 +00:00
event: [push, pull_request, tag, deployment]
2022-01-03 19:12:10 +00:00
matrix:
GO_VERSION:
- "1.17"
- "1.16"
- "latest"