Skip to content

Commit

Permalink
added linting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxada committed Oct 4, 2023
1 parent 3a9c476 commit 762f33a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run shell script

# check for linting errors
- name: Check for linting errors
run: |
sudo apt-get update
sudo apt install -y shellcheck
chmod +x install.sh
./install.sh
shellcheck install.sh
- name: Run shell script
run: ./install.sh

0 comments on commit 762f33a

Please sign in to comment.