From 288ed33afadc97da6364c93fcc42807c72fdcfff Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 3 Apr 2024 09:12:25 +1100 Subject: [PATCH] just: Use pinned nightly Use the nightly version that we use in CI when running `just` commands that use the nightly toolchain. --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index da58b497..ea776e81 100644 --- a/justfile +++ b/justfile @@ -11,11 +11,11 @@ check: # Lint everything. lint: - cargo +nightly clippy --workspace --all-targets --all-features -- --deny warnings + cargo +$(cat .github/nightly-version) clippy --workspace --all-targets --all-features -- --deny warnings # Check the formatting format: - cargo +nightly fmt --all --check + cargo +$(cat .github/nightly-version) fmt --all --check # Quick and dirty CI useful for pre-push checks. sane: lint