Skip to content

Commit

Permalink
Fix typo that prevented running the tests on beta and nightly (#240)
Browse files Browse the repository at this point in the history
* fix typo that prevented running the tests on beta and nightly

* install beta toolchain in CI
  • Loading branch information
narpfel committed Apr 9, 2024
1 parent 2880bad commit fca01ef
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -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:
Expand Down

0 comments on commit fca01ef

Please sign in to comment.