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

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