diff --git a/ci/check-rust-linting.sh b/ci/check-rust-linting.sh index 6270ef7..37272e9 100755 --- a/ci/check-rust-linting.sh +++ b/ci/check-rust-linting.sh @@ -3,6 +3,4 @@ set -o errexit set -o xtrace -cargo clippy --verbose --workspace --all-targets -- -D warnings -cargo clippy --verbose --workspace --all-targets --all-features -- -D warnings -cargo clippy --verbose --workspace --all-targets --no-default-features -- -D warnings +cargo clippy --verbose --locked -- -D warnings diff --git a/ci/compile.sh b/ci/compile.sh index c08c588..3b281a0 100755 --- a/ci/compile.sh +++ b/ci/compile.sh @@ -3,6 +3,4 @@ set -o errexit set -o xtrace -cargo build --verbose --workspace -cargo build --verbose --workspace --all-features -cargo build --verbose --workspace --no-default-features +cargo build --verbose --locked diff --git a/ci/unit-test.sh b/ci/unit-test.sh index 043f87d..9579b0b 100755 --- a/ci/unit-test.sh +++ b/ci/unit-test.sh @@ -3,6 +3,4 @@ set -o errexit set -o xtrace -cargo test --verbose --workspace -cargo test --verbose --workspace --all-features -cargo test --verbose --workspace --no-default-features +cargo test --verbose --locked