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 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"