Skip to content

Commit

Permalink
shellcheck lint (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
aceforeverd authored Mar 21, 2021
1 parent ec47d8e commit 8f3483d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ name: CI
# events but only for the master branch
on:
push:
branches: [ master ]
branches:
- master
tags:
- v*
pull_request:
branches: [ master ]

Expand All @@ -23,6 +26,15 @@ jobs:
github_token: ${{ secrets.github_token }}
level: info
reporter: github-pr-review

- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
path: "."
pattern: "*.sh"
exclude: "./.git/*"

test:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 8f3483d

Please sign in to comment.