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

21 lines
398 B
YAML
Raw Normal View History

2020-09-08 06:53:03 +00:00
---
kind: pipeline
name: linters
steps:
- name: run shellcheck
image: debian:buster
commands:
2020-09-08 06:55:57 +00:00
- apt update
- apt install -y shellcheck
2020-09-24 07:18:31 +00:00
- shellcheck abra script.d/*
2020-10-23 03:03:01 +00:00
- name: test
image: debian:buster
commands:
- apt update
- apt install -y bats curl
- curl -fsSL https://get.docker.com | sh
2020-10-23 03:03:01 +00:00
- bats test.bats
2020-09-08 06:53:03 +00:00
trigger:
branch:
2020-09-08 06:54:54 +00:00
- main