Skip to content

Commit

Permalink
Downgrade indexmap for 1.64 MSRV in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Nov 13, 2024
1 parent ea6b406 commit fe8be07
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
override: true
- run: cargo test
- run: cargo test --features integer128
# Downgrade the indexmap dependency for MSRV 1.64
- run: cargo update -p indexmap --precise 2.5.0
if: ${{ matrix.rust == '1.64.0' }}
- run: cargo test --features indexmap
- run: cargo test --all-features

Expand All @@ -52,6 +55,8 @@ jobs:
override: true
- run: cargo clippy -- -D warnings
- run: cargo clippy --features integer128 -- -D warnings
# Downgrade the indexmap dependency for MSRV 1.64
- run: cargo update -p indexmap --precise 2.5.0
- run: cargo clippy --features indexmap -- -D warnings
- run: cargo clippy --all-features -- -D warnings

Expand Down

0 comments on commit fe8be07

Please sign in to comment.