From aa050b258375cd4ea87ee544211cbecb3d90cdd6 Mon Sep 17 00:00:00 2001 From: Claire Nord Date: Sun, 3 Sep 2023 23:20:12 -0700 Subject: [PATCH] .github workflows ci_checks: switch to nightly only --- .github/workflows/ci_checks.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_checks.yml b/.github/workflows/ci_checks.yml index 674cb64..de3115c 100644 --- a/.github/workflows/ci_checks.yml +++ b/.github/workflows/ci_checks.yml @@ -11,12 +11,9 @@ jobs: continue-on-error: ${{ matrix.experimental || false }} strategy: matrix: - # All generated code should be running on stable now - rust: [nightly, stable] + rust: [nightly] include: - # Nightly is only for reference and allowed to fail - rust: nightly - experimental: true os: # Check compilation works on common OSes # (i.e. no path issues) @@ -40,7 +37,7 @@ jobs: - uses: actions/checkout@v3 with: submodules: true - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@nightly with: components: clippy target: thumbv6m-none-eabi @@ -52,7 +49,7 @@ jobs: - uses: actions/checkout@v3 with: submodules: true - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@nightly with: components: rustfmt target: thumbv6m-none-eabi