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 9f9bd34 commit ae0a304Copy full SHA for ae0a304
.github/workflows/shellcheck.yml
@@ -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/action-shellcheck@2.0.0
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