Skip to content

Commit

Permalink
Execute tests also on beta and nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Nov 6, 2022
1 parent 10e2983 commit 077eeb7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -22,5 +22,9 @@ jobs:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all --verbose
- name: Run tests
run: cargo test --all --verbose
- name: Run tests stable
run: RSTEST_TEST_CHANNEL=stable; cargo test --all --verbose
- name: Run tests beta
run: RSTEST_TEST_CHANNEL=beta; cargo test --all --verbose
- name: Run tests nightly
run: RSTEST_TEST_CHANNEL=nightly; cargo test --all --verbose

0 comments on commit 077eeb7

Please sign in to comment.