Skip to content

Commit

Permalink
fix typo that prevented running the tests on beta and nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
narpfel committed Apr 9, 2024
1 parent 2880bad commit 930c08c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -28,11 +28,11 @@ jobs:
- 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 930c08c

Please sign in to comment.