From fca01efa98889fc5d4f0803ef18ea00ed8f68097 Mon Sep 17 00:00:00 2001 From: narpfel Date: Tue, 9 Apr 2024 18:08:00 +0200 Subject: [PATCH] Fix typo that prevented running the tests on beta and nightly (#240) * fix typo that prevented running the tests on beta and nightly * install beta toolchain in CI --- .github/workflows/test.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aba6e27..725d239 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,14 +25,18 @@ jobs: with: toolchain: nightly override: true + - name: Install latest beta + uses: actions-rs/toolchain@v1 + with: + toolchain: beta - name: Build run: cargo build --all --verbose - name: Run tests stable - run: RSTEST_TEST_CHANNEL=stable; cargo test --all --verbose + run: RSTEST_TEST_CHANNEL=stable cargo test --all --verbose - name: Run tests beta - run: RSTEST_TEST_CHANNEL=beta; cargo test --all --verbose + run: RSTEST_TEST_CHANNEL=beta cargo test --all --verbose - name: Run tests nightly - run: RSTEST_TEST_CHANNEL=nightly; cargo test --all --verbose + run: RSTEST_TEST_CHANNEL=nightly cargo test --all --verbose msrv: runs-on: ubuntu-latest steps: