From ed2572647575f40202a411ab7ff93754e8bd369c Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 4 Mar 2019 09:06:51 +0100 Subject: [PATCH] Add workflow (#531) --- .github/main.workflow | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..05ad5ec --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,9 @@ +workflow "Checks" { + on = "push" + resolves = ["Shell-Scripts"] +} + +action "Shell-Scripts" { + uses = "actions/bin/shellcheck@master" + args = "**/*.sh" +}