From 6740ab52de5df7efa35516bc1783149de1da7b27 Mon Sep 17 00:00:00 2001 From: 7k5x <7k5xlp0onfire@gmail.com> Date: Mon, 14 Jun 2021 13:53:03 +0900 Subject: [PATCH] Create shellcheck.yml --- .github/workflows/shellcheck.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/shellcheck.yml diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 0000000..c1c8c94 --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,18 @@ +on: + push: + branches: + - master + - photon-style + pull_request: + branches: + - master +name: 'ShellCheck' + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master