0
0
mirror of https://github.com/thegeeklab/wp-plugin-go.git synced 2024-11-25 09:30:39 +00:00
wp-plugin-go/.woodpecker/test.yml

23 lines
366 B
YAML
Raw Permalink Normal View History

---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
deps:
2023-08-19 13:17:54 +00:00
image: docker.io/library/golang:1.21
commands:
- make deps
lint:
2023-08-19 13:17:54 +00:00
image: docker.io/library/golang:1.21
commands:
- make lint
test:
2023-08-19 13:17:54 +00:00
image: docker.io/library/golang:1.21
commands:
- make test