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 09db51b commit 5af9e08Copy full SHA for 5af9e08
.github/workflows/shellcheck.yml
@@ -0,0 +1,19 @@
1
+name: Shellcheck
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
+jobs:
9
+ shellcheck:
10
+ name: Check Shell
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Run Shellcheck
15
+ uses: ludeeus/action-shellcheck@master
16
+ with:
17
+ check_together: 'yes'
18
+ env:
19
+ SHELLCHECK_OPTS: --shell sh
.github/workflows/spellcheck.yml
@@ -0,0 +1,14 @@
+name: reviewdog
+on: [pull_request]
+ misspell:
+ name: runner / misspell
+ - name: Check out code.
+ uses: actions/checkout@v3
+ - name: misspell
+ uses: reviewdog/action-misspell@v1
+ github_token: ${{ secrets.github_token }}
+ locale: "US"
0 commit comments