0
0
forked from toolshed/abra
Files
abra/.drone.yml
2020-10-23 05:13:06 +02:00

21 lines
398 B
YAML

---
kind: pipeline
name: linters
steps:
- name: run shellcheck
image: debian:buster
commands:
- apt update
- apt install -y shellcheck
- shellcheck abra script.d/*
- name: test
image: debian:buster
commands:
- apt update
- apt install -y bats curl
- curl -fsSL https://get.docker.com | sh
- bats test.bats
trigger:
branch:
- main