Skip to content

Commit 5af9e08

Browse files
authored
Add files via upload
Signed-off-by: Zoey <[email protected]>
1 parent 09db51b commit 5af9e08

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/shellcheck.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: reviewdog
2+
on: [pull_request]
3+
jobs:
4+
misspell:
5+
name: runner / misspell
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out code.
9+
uses: actions/checkout@v3
10+
- name: misspell
11+
uses: reviewdog/action-misspell@v1
12+
with:
13+
github_token: ${{ secrets.github_token }}
14+
locale: "US"

0 commit comments

Comments
 (0)