diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 836d891..4f430a3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,4 +10,8 @@ jobs: steps: - uses: actions/checkout@v1 - name: Run tests. - run: make test + run: | + wget https://github.com/koalaman/shellcheck/releases/download/v0.7.1/shellcheck-v0.7.1.linux.x86_64.tar.xz + xz -cd shellcheck-v0.7.1.linux.x86_64.tar.xz | tar xf - + export PATH=shellcheck-v0.7.1:$PATH + make test |