pdf-optimize/.drone.yml

12 lines
177 B
YAML
Raw Normal View History

2021-02-19 01:02:25 +01:00
---
kind: pipeline
type: docker
name: lint
steps:
- name: ShellCheck
2021-02-19 01:07:31 +01:00
image: koalaman/shellcheck-alpine:v0.7.1
2021-02-19 01:06:02 +01:00
commands:
2021-02-19 01:19:26 +01:00
- shellcheck -e SC2181 pdf-optimize
2021-02-19 01:02:25 +01:00
...