Skip to content

Commit

Permalink
ci: try both nightly and stable rust for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
YeungOnion committed Aug 22, 2024
1 parent bf460a1 commit a24c5b5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install Rust stable
uses: dtolnay/rust-toolchain@nightly

- name: Test default features
run: cargo test --all-targets
- name: Test default features on stable
run: cargo +stable test --all-targets
- name: Test default features on nightly
run: cargo +nightly test --all-targets

0 comments on commit a24c5b5

Please sign in to comment.