Skip to content

Commit

Permalink
Run ShellCheck with reviewdog on Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
machupicchubeta committed May 5, 2024
1 parent 03ceccc commit 00f1105
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: reviewdog
on: [pull_request]
jobs:
shellcheck:
name: runner / shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: reviewdog
path: '.'
pattern: 'mac_with_*'
exclude: './.git/*'
check_all_files_with_shebangs: 'false'

0 comments on commit 00f1105

Please sign in to comment.