From 5589210103c3351240363401cdc358d4199cf47a Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sat, 22 Aug 2026 13:33:02 -0400 Subject: [PATCH 1/2] ci: Add channel matrix --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63cb386..15e7028 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,13 +21,16 @@ defaults: jobs: test: - name: test on the beta channel runs-on: ubuntu-latest + strategy: + matrix: + # TODO: add stable and MSRV to this list once 1.99 is released. + channel: ['beta', 'nightly'] steps: - uses: actions/checkout@v7 - - uses: dtolnay/rust-toolchain@beta + - uses: dtolnay/rust-toolchain@master with: - toolchain: beta + toolchain: ${{ matrix.channel }} targets: thumbv7m-none-eabi components: rustfmt, clippy - uses: Swatinem/rust-cache@v2 From bb16d07f5ce8f79a24c0ac0987dbb549ca823922 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sat, 22 Aug 2026 13:38:12 -0400 Subject: [PATCH 2/2] Remove rust-toolchain.toml --- rust-toolchain.toml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index ce4bff1..0000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,2 +0,0 @@ -[toolchain] -channel = "beta"