Skip to content

Commit 888c75d

Browse files
committed
ci: shellcheck checks
1 parent 2753b9e commit 888c75d

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

.github/workflows/shellcheck.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
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

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ exec 1>&2
2222
# Cross platform projects tend to avoid non-ASCII filenames; prevent
2323
# them from being added to the repository. We exploit the fact that the
2424
# printable range starts at the space character and ends with tilde.
25+
# disable the check to quoting the $(...) command
26+
# shellcheck disable=SC2046
2527
if [ "$allownonascii" != "true" ] &&
2628
# Note that the use of brackets around a tr range is ok here, (it's
2729
# even required, for portability to Solaris 10's /usr/bin/tr), since
2830
# the square bracket bytes happen to fall in the designated range.
29-
test $(git diff --cached --name-only --diff-filter=A -z $against |
31+
test $(git diff --cached --name-only --diff-filter=A -z "$against" |
3032
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
3133
then
3234
cat <<\EOF
@@ -44,7 +46,7 @@ EOF
4446
fi
4547

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

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

0 commit comments

Comments
 (0)