Skip to content

Commit ae0a304

Browse files
committed
ci: add shellcheck job
1 parent 9f9bd34 commit ae0a304

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/shellcheck.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Shellcheck
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
jobs:
7+
shellcheck:
8+
name: Shellcheck
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Run ShellCheck
13+
uses: ludeeus/[email protected]
14+
env:
15+
SHELLCHECK_OPTS: -x # allow outside sources
16+
with:
17+
# This code comes directly from upstream libsecp256k1
18+
# and should not be linted here.
19+
ignore_paths: ./secp256k1-sys/depend/**/*.sh

0 commit comments

Comments
 (0)