Skip to content

Commit be6a7a2

Browse files
committed
modify for only commands
1 parent 27f9ba2 commit be6a7a2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/static-analysis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
name: Static Analysis
1+
name: Static Analysis for Commands
22
on:
33
push:
44
branches:
55
- chore/add-shellcheck-github-actions
66
pull_request:
77
paths:
8-
- '**.sh'
8+
- 'commands/**.sh'
99
jobs:
10-
shellcheck:
10+
lint-commands:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- name: Run Shellcheck
14+
- name: Shellcheck for commands
1515
run: |
1616
shopt -s nullglob dotglob
17-
shellcheck **.sh
17+
shellcheck commands/**.sh

0 commit comments

Comments
 (0)