We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81e3e03 commit 4d3ea90Copy full SHA for 4d3ea90
.github/workflows/test.yml
@@ -58,6 +58,14 @@ jobs:
58
toolchain: ${{ matrix.rust }}
59
- uses: Swatinem/rust-cache@v2
60
if: ${{ matrix.rust != 'nightly' }} # ineffective due to version key
61
+ with:
62
+ # Helpful for Rust versions that use old index
63
+ cache-on-failure: true
64
+ # Pin a time version with a compatible MSRV
65
+ - name: Pin time version
66
+ if: ${{ matrix.rust != 'nightly' && matrix.rust != 'stable' }}
67
+ run: |
68
+ cargo update --package time --precise 0.3.16
69
- name: Check
70
run: |
71
cargo check --all-targets --verbose --no-default-features --features "${{ matrix.features }}"
0 commit comments