Skip to content

Commit 8f3483d

Browse files
authored
shellcheck lint (#13)
1 parent ec47d8e commit 8f3483d

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ name: CI
66
# events but only for the master branch
77
on:
88
push:
9-
branches: [ master ]
9+
branches:
10+
- master
11+
tags:
12+
- v*
1013
pull_request:
1114
branches: [ master ]
1215

@@ -23,6 +26,15 @@ jobs:
2326
github_token: ${{ secrets.github_token }}
2427
level: info
2528
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/*"
2638

2739
test:
2840
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)