19 lines
297 B
YAML
19 lines
297 B
YAML
---
|
|
kind: pipeline
|
|
name: linters
|
|
steps:
|
|
- name: run shellcheck
|
|
image: alpine:latest
|
|
commands:
|
|
- apk add shellcheck
|
|
- shellcheck abra
|
|
|
|
- name: run unit tests
|
|
image: docker:dind
|
|
commands:
|
|
- apk add bats curl
|
|
- bats test.bats
|
|
trigger:
|
|
branch:
|
|
- main
|