--- 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: alpine:latest commands: - apk add kcov - mkdir -p coverage - kcov coverage abra - name: send code coverage report to codecov image: robertstettner/drone-codecov secrets: - codecov_token trigger: branch: - main