commit 7e162e94fc087c6a5dd3a1c85d892d518b05cd11 parent 33252dfe096fd5a8194dd31e1abdc202fbf125de Author: aabacchus <43711769+aabacchus@users.noreply.github.com> Date: Mon, 3 May 2021 13:34:10 +0100 Create main.yml Diffstat:
A | .github/workflows/main.yml | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: Shellcheck +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run shellcheck + run: | + shopt -s nullglob + find -name build -or -name post-install -exec shellcheck {} +