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