abra/.drone.yml

33 lines
614 B
YAML
Raw Normal View History

2020-09-08 06:53:03 +00:00
---
kind: pipeline
name: linters
steps:
- name: run shellcheck
2020-10-25 20:19:14 +00:00
image: alpine:latest
2020-09-08 06:53:03 +00:00
commands:
2020-10-25 20:19:14 +00:00
- apk add shellcheck
- shellcheck abra
2020-10-25 20:17:01 +00:00
2020-10-26 10:25:55 +00:00
- name: run unit tests
image: docker:dind
commands:
- apk add bats curl
- bats test.bats
2020-10-26 10:20:17 +00:00
- name: collect code coverage
2020-10-26 10:28:19 +00:00
image: kcov/kcov:latest
2020-10-26 10:20:17 +00:00
commands:
2020-10-26 10:25:55 +00:00
- mkdir -p coverage
2020-10-26 10:38:32 +00:00
- kcov --collect-only coverage abra || true
2020-10-26 10:25:55 +00:00
- name: send code coverage report to codecov
image: robertstettner/drone-codecov
2020-10-26 10:36:12 +00:00
commands:
2020-10-26 10:40:41 +00:00
- codecov -s coverage
2020-10-26 10:20:17 +00:00
secrets:
- codecov_token
2020-09-08 06:53:03 +00:00
trigger:
branch:
2020-09-08 06:54:54 +00:00
- main