2023-07-25 20:32:49 +00:00
|
|
|
---
|
|
|
|
when:
|
2023-07-26 18:43:03 +00:00
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
2023-07-25 21:43:19 +00:00
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
2023-07-25 20:32:49 +00:00
|
|
|
|
|
|
|
steps:
|
2024-10-27 20:33:15 +00:00
|
|
|
- name: lint
|
2023-07-25 20:32:49 +00:00
|
|
|
image: docker.io/koalaman/shellcheck-alpine:stable
|
2024-10-27 20:33:15 +00:00
|
|
|
depends_on: []
|
2023-07-25 20:32:49 +00:00
|
|
|
commands:
|
|
|
|
- shellcheck ./retry
|
|
|
|
|
2024-10-27 20:33:15 +00:00
|
|
|
- name: test
|
2023-07-25 20:32:49 +00:00
|
|
|
image: docker.io/bats/bats
|
2024-10-27 20:33:15 +00:00
|
|
|
depends_on: []
|
2023-07-25 20:32:49 +00:00
|
|
|
commands:
|
|
|
|
- bats ./retry.bats
|