From db0d4abea7b4e12106d66f591661d0f17142beec Mon Sep 17 00:00:00 2001 From: Stanislas Date: Sat, 11 May 2019 11:15:04 +0200 Subject: [PATCH] Add ShellCheck GitHub action --- .github/main.workflow | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..a5a711d --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,8 @@ +workflow "ShellCheck" { + on = "push" + resolves = ["shellcheck"] +} + +action "shellcheck" { + uses = "ludeeus/actions/shellcheck@master" +}