We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec47d8e commit 8f3483dCopy full SHA for 8f3483d
1 file changed
.github/workflows/ci.yml
@@ -6,7 +6,10 @@ name: CI
6
# events but only for the master branch
7
on:
8
push:
9
- branches: [ master ]
+ branches:
10
+ - master
11
+ tags:
12
+ - v*
13
pull_request:
14
branches: [ master ]
15
@@ -23,6 +26,15 @@ jobs:
23
26
github_token: ${{ secrets.github_token }}
24
27
level: info
25
28
reporter: github-pr-review
29
+
30
+ - name: shellcheck
31
+ uses: reviewdog/action-shellcheck@v1
32
+ with:
33
+ github_token: ${{ secrets.github_token }}
34
+ reporter: github-pr-review
35
+ path: "."
36
+ pattern: "*.sh"
37
+ exclude: "./.git/*"
38
39
test:
40
runs-on: ${{ matrix.os }}
0 commit comments