ezshare/.woodpecker.yml

10 lines
177 B
YAML
Raw Normal View History

2022-01-03 18:41:01 +00:00
pipeline:
build:
image: golang
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]