Skip to content

Commit

Permalink
Fix CI for MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Nov 22, 2022
1 parent 9296c26 commit ec0ed83
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Expand Up @@ -26,7 +26,10 @@ jobs:
rustup default ${{matrix.rust_channel}}
- name: MSRV dependencies
if: matrix.rust_channel == '1.42.0'
run: cargo update -p indexmap --precise 1.6.2
run: |
cargo update -p indexmap --precise 1.6.2
cargo update -p rayon --precise 1.5.3
cargo update -p rayon-core --precise 1.9.3
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit ec0ed83

Please sign in to comment.