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 35dab99 commit b22c440Copy full SHA for b22c440
.github/workflows/ci.yml
@@ -22,6 +22,10 @@ jobs:
22
uses: actions/setup-python@v1
23
with:
24
python-version: ${{ matrix.python-version }}
25
+ - name: Install utilities
26
+ run: |
27
+ apt-get -qq -y update
28
+ apt-get -qq -y install shellcheck
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip setuptools wheel
@@ -35,6 +39,11 @@ jobs:
35
39
if: matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest'
36
40
37
41
black --check --diff --verbose .
42
+ - name: Lint with Shellcheck
43
+ if: matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest'
44
45
+ shellcheck tests/*.sh
46
+ shellcheck scripts/*.sh
38
47
- name: Check MANIFEST
48
49
0 commit comments