mirror of
https://github.com/thegeeklab/wp-ansible.git
synced 2024-11-09 07:00:41 +00:00
37346feb12
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
18 lines
298 B
YAML
18 lines
298 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: lint
|
|
image: docker.io/library/golang:1.23
|
|
commands:
|
|
- make lint
|
|
|
|
- name: test
|
|
image: docker.io/library/golang:1.23
|
|
commands:
|
|
- make test
|