0
0
mirror of https://github.com/thegeeklab/wp-plugin-go.git synced 2024-09-21 08:12:44 +02:00
wp-plugin-go/.woodpecker/test.yml

23 lines
366 B
YAML
Raw Normal View History

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