Skip to content

Commit c29ccc4

Browse files
committed
Avoid updating deps on older versions
1 parent 8ec32bd commit c29ccc4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030

3131
# Make sure we test with recent deps
3232
- run: cargo update
33+
# Note: some crates broke BC with 1.74 so we use the locked deps
34+
if: "${{ matrix.rust != '1.74' }}"
3335
- run: cargo build --all-features --all-targets
3436
- run: cargo test --all-features
3537
- run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)