abra/.drone.yml

31 lines
563 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
- name: collect code coverage
image: kcov/kcov:latest
commands:
- mkdir -p coverage
- kcov --report-only coverage abra
- name: send code coverage report to codecov
image: robertstettner/drone-codecov
secrets:
- codecov_token
trigger:
branch:
- main