Created Drone (markdown)

Logan Marchione
2020-10-20 13:00:21 +00:00
parent 4d3ae06587
commit 14af6dc0e8

14
Drone.md Normal file

@@ -0,0 +1,14 @@
For a basic configuration, place the following in your ` .drone.yml`:
```yaml
---
kind: pipeline
type: docker
name: default
steps:
- name: shellcheck
image: koalaman/shellcheck-alpine:stable
commands:
- "shellcheck testScript.sh"
```