From b4d79eba05fcd4db97e0b6b9ac29ac701ac04164 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Tue, 1 Apr 2025 10:24:14 +0200 Subject: [PATCH] fix(CI): use nightly for checking In order to test with not yet released Rust versions, the `check` step, which is run first, needs to use the most recent compiler. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4079983d..c8295166 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,8 +12,8 @@ jobs: - uses: actions/checkout@v4 - run: sh tests/check-msrv-consistency.sh - run: | - rustup install --profile minimal stable - rustup default stable + rustup install --profile minimal nightly + rustup default nightly - uses: Swatinem/rust-cache@v2 - run: cargo check --all-targets