We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81d7957 commit 3de3bdcCopy full SHA for 3de3bdc
.github/workflows/reviewdog.yml
@@ -21,9 +21,23 @@ jobs:
21
name: runner / yamllint
22
runs-on: ubuntu-latest
23
steps:
24
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
25
- name: yamllint
26
uses: reviewdog/action-yamllint@v1
27
with:
28
github_token: ${{ secrets.github_token }}
29
reporter: github-check
30
+
31
+ shellcheck:
32
+ name: runner / shellcheck
33
+ runs-on: ubuntu-latest
34
+ steps:
35
36
+ - name: shellcheck
37
+ uses: reviewdog/action-shellcheck@v1
38
+ with:
39
+ github_token: ${{ secrets.github_token }}
40
+ reporter: github-check
41
+ path: "."
42
+ pattern: "*.sh"
43
+ exclude: "./.git/*"
0 commit comments