Skip to content

Commit 6c71cef

Browse files
committedAug 8, 2024
ci: shellcheck checks
1 parent 2753b9e commit 6c71cef

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
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/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

‎contrib/_test.sh

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
set -ex
44

5-
REPO_DIR=$(git rev-parse --show-toplevel)
65
FEATURES="hashes global-context lowmemory rand recovery serde std alloc"
76

87
cargo --version

‎contrib/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222
for dep in $DEPS
2323
do
2424
cp "Cargo-$dep.lock" Cargo.lock
25-
$REPO_DIR/contrib/_test.sh
25+
"$REPO_DIR"/contrib/_test.sh
2626

2727
if [ "$dep" = recent ];
2828
then

‎githooks/pre-commit

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ if [ "$allownonascii" != "true" ] &&
2626
# Note that the use of brackets around a tr range is ok here, (it's
2727
# even required, for portability to Solaris 10's /usr/bin/tr), since
2828
# the square bracket bytes happen to fall in the designated range.
29-
test $(git diff --cached --name-only --diff-filter=A -z $against |
30-
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
29+
test "$(git diff --cached --name-only --diff-filter=A -z $against |
30+
LC_ALL=C tr -d '[ -~]\0' | wc -c)" != 0
3131
then
3232
cat <<\EOF
3333
Error: Attempt to add a non-ASCII file name.
@@ -44,7 +44,7 @@ EOF
4444
fi
4545

4646
# If there are whitespace errors, print the offending file names and fail.
47-
git diff-index --check --cached $against -- || exit 1
47+
git diff-index --check --cached "$against" -- || exit 1
4848

4949
# Check that code lints cleanly.
5050
cargo clippy --features=rand,std,recovery,lowmemory,global-context --all-targets -- -D warnings || exit 1

0 commit comments

Comments
 (0)