This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
abra/.drone.yml

33 lines
614 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 --collect-only coverage abra || true
- name: send code coverage report to codecov
image: robertstettner/drone-codecov
commands:
- codecov -s coverage
secrets:
- codecov_token
trigger:
branch:
- main