Skip to content

Commit 67b36a8

Browse files
author
SMKRV
committed
Release v1.0.0
1 parent 638a9ad commit 67b36a8

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/shellcheck.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ShellCheck
2+
3+
on:
4+
push:
5+
paths:
6+
- '**.sh'
7+
pull_request:
8+
paths:
9+
- '**.sh'
10+
11+
jobs:
12+
shellcheck:
13+
name: ShellCheck
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Install ShellCheck
19+
run: sudo apt-get install -y shellcheck
20+
21+
- name: Run ShellCheck
22+
run: |
23+
shellcheck --severity=warning --enable=all --shell=bash \
24+
$(find . -type f -name "*.sh")

0 commit comments

Comments
 (0)