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 2f60502 commit 9f5c287Copy full SHA for 9f5c287
ci/semver.sh
@@ -72,5 +72,5 @@ for TARGET in $TARGETS; do
72
done
73
74
# FIXME: Use upstream once it gets rustup.
75
- cargo +${NIGHTLY_DATE} semverfork --api-guidelines --target="${TARGET}"
+ cargo semverfork --api-guidelines --target="${TARGET}"
76
ci/style.sh
@@ -11,7 +11,8 @@ if rustup component add rustfmt-preview ; then
11
fi
12
13
if shellcheck --version ; then
14
- shellcheck -e SC2103 ci/*.sh
+ # GHA's shellcheck is too old (0.4.6) and cannot handle SC2153 correctly.
15
+ shellcheck -e SC2103 -e SC2153 ci/*.sh
16
else
17
echo "shellcheck not found"
18
exit 1
0 commit comments