somehttphandlers/.woodpecker.yml

27 lines
395 B
YAML
Raw Normal View History

2022-01-31 09:13:40 +01:00
pipeline:
tags:
image: alpine/git
commands:
- git fetch --tags
lint:
2022-01-31 10:11:59 +01:00
image: golang:1.17
2022-01-31 09:13:40 +01:00
commands:
- make lint
test:
2022-01-31 10:11:59 +01:00
image: golang:1.17
2022-01-31 09:13:40 +01:00
commands:
- make test
build:
2022-01-31 10:11:59 +01:00
image: golang:1.17
2022-01-31 09:13:40 +01:00
commands:
- make build
release:
2022-01-31 10:11:59 +01:00
image: golang:1.17
2022-01-31 09:13:40 +01:00
commands:
- make release
secrets:
- gitea_token
when:
event:
- tag