diff options
author | merakor <cem@ckyln.com> | 2020-09-05 10:04:12 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-09-05 10:04:12 +0000 |
commit | 8e22aac34a960d634a4513c3078d15fcb701db84 (patch) | |
tree | 3c89bdfbeb782560834e2c557a93b3dd9278e7f4 | |
parent | 5a8e54aa3bf06088339e8d486f1cd187428db9a0 (diff) | |
download | cpt-8e22aac34a960d634a4513c3078d15fcb701db84.tar.gz |
CI: I forgot that ubuntu is ancient
FossilOrigin-Name: 7aa8f975255bc1b0e2307770e74c83cb158c1545ec4cec5ed76c7c2f6a14657e
-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 |