Skip to content

Commit

Permalink
chore: add shellcheck PR check
Browse files Browse the repository at this point in the history
  • Loading branch information
benmcclelland committed Jun 10, 2024
1 parent f110649 commit 0d5cc61
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: shellcheck
on: pull_request
jobs:

build:
name: Run shellcheck
runs-on: ubuntu-latest
steps:

- name: Check out code
uses: actions/checkout@v4

- name: Run checks
run: |
shellcheck --version
shellcheck -e SC1091 tests/*.sh tests/*/*.sh

0 comments on commit 0d5cc61

Please sign in to comment.