14 lines
222 B
YAML
14 lines
222 B
YAML
---
|
|
kind: pipeline
|
|
name: linters
|
|
steps:
|
|
- name: run shellcheck
|
|
image: debian:buster
|
|
commands:
|
|
- apt update
|
|
- apt install -y shellcheck
|
|
- shellcheck abra script.d/*
|
|
trigger:
|
|
branch:
|
|
- main
|