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 1d1fb4d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [stable, nightly]

steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install Rust
uses: dtolnay/rust-toolchain@${{ matrix.version }}

- name: Test default features
run: cargo test --all-targets
run: cargo test --all-targets --no-fail-fast

0 comments on commit 1d1fb4d

Please sign in to comment.