Skip to content

Commit

Permalink
CI: check shell scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mazznoer committed Aug 30, 2024
1 parent ae3bf50 commit 4e96931
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
run: |
ls -A target/completions
- name: Check shell scripts
if: matrix.os == 'ubuntu-latest'
run: >
for file in scripts/*.sh; do;
[ -e "$file" ] || continue;
bash -n "$file";
done
- name: Run lolcrab
if: matrix.os != 'windows-latest'
run: |
Expand Down

0 comments on commit 4e96931

Please sign in to comment.