We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479fc9c commit 17c4a70Copy full SHA for 17c4a70
.github/workflows/test.yml
@@ -21,6 +21,23 @@ jobs:
21
version: v1.35
22
args: --verbose
23
24
+ shellcheck:
25
+ runs-on: ubuntu-20.04
26
+ timeout-minutes: 20
27
+ steps:
28
+ - uses: actions/checkout@v2
29
+ with:
30
+ fetch-depth: 1
31
+ - name: Install shellcheck
32
+ run: |
33
+ sudo apt-get update
34
+ sudo apt-get install -y shellcheck
35
+ - name: Run shellcheck (ignore SC2086)
36
+ # TODO: do not ignore SC2086
37
+ # SC2086: "Double quote to prevent globbing and word splitting."
38
+ # https://github.com/koalaman/shellcheck/wiki/SC2086
39
+ run: find . -name '*.sh' | xargs shellcheck -e SC2086
40
+
41
basic:
42
name: Basic tests
43
runs-on: ${{ matrix.os }}
0 commit comments