wg-quicker/.woodpecker.yml
Marvin Preuss 9f3248641a
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
ci: move from drone to woodpecker
2022-02-07 15:34:59 +01:00

35 lines
533 B
YAML

pipeline:
tags:
image: alpine/git
commands:
- git fetch --tags
submodules:
image: alpine/git
commands:
- git submodule init
- git submodule update
when:
event:
- tag
lint:
image: golang:1.17
commands:
- make lint
test:
image: golang:1.17
commands:
- make test
build:
image: golang:1.17
commands:
- make build
release:
image: golang:1.17
commands:
- make release
secrets:
- github_token
when:
event:
- tag