We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a9c476 commit 762f33aCopy full SHA for 762f33a
1 file changed
.github/workflows/tests.yml
@@ -17,8 +17,15 @@ jobs:
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v3
20
- - name: Run shell script
+
21
+ # check for linting errors
22
+ - name: Check for linting errors
23
run: |
24
+ sudo apt-get update
25
+ sudo apt install -y shellcheck
26
chmod +x install.sh
- ./install.sh
27
+ shellcheck install.sh
28
29
+ - name: Run shell script
30
+ run: ./install.sh
31
0 commit comments