ezshare/.woodpecker.yml

15 lines
248 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 19:47:05 +00:00
when:
branch: master
event: [push, pull_request, tag, deployment]
2022-01-03 19:12:10 +00:00
matrix:
GO_VERSION:
- "1.17"
- "latest"