Skip to content

Commit 762f33a

Browse files
committed
added linting tests
1 parent 3a9c476 commit 762f33a

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,15 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Run shell script
20+
21+
# check for linting errors
22+
- name: Check for linting errors
2123
run: |
24+
sudo apt-get update
25+
sudo apt install -y shellcheck
2226
chmod +x install.sh
23-
./install.sh
27+
shellcheck install.sh
28+
29+
- name: Run shell script
30+
run: ./install.sh
2431

0 commit comments

Comments
 (0)