mirror of
https://github.com/thegeeklab/retry.git
synced 2024-11-21 23:20:40 +00:00
20 lines
337 B
YAML
20 lines
337 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
lint:
|
|
group: test
|
|
image: docker.io/koalaman/shellcheck-alpine:stable
|
|
commands:
|
|
- shellcheck ./retry
|
|
|
|
test:
|
|
group: test
|
|
image: docker.io/bats/bats
|
|
commands:
|
|
- bats ./retry.bats
|