From 14af6dc0e8ba82c8a43e8697197637a8abcbdd2a Mon Sep 17 00:00:00 2001 From: Logan Marchione Date: Tue, 20 Oct 2020 13:00:21 +0000 Subject: [PATCH] Created Drone (markdown) --- Drone.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Drone.md diff --git a/Drone.md b/Drone.md new file mode 100644 index 0000000..4218660 --- /dev/null +++ b/Drone.md @@ -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" +``` \ No newline at end of file