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 48d1693Copy full SHA for 48d1693
.github/workflows/test.yml
@@ -58,6 +58,11 @@ jobs:
58
toolchain: ${{ matrix.rust }}
59
- uses: Swatinem/rust-cache@v2
60
if: ${{ matrix.rust != 'nightly' }} # ineffective due to version key
61
+ # Pin a time version with a compatible MSRV
62
+ - name: Pin time version
63
+ if: ${{ matrix.rust != 'nightly' && matrix.rust != 'stable' }}
64
+ run: |
65
+ cargo update --package time --precise 0.3.20
66
- name: Check
67
run: |
68
cargo check --all-targets --verbose --no-default-features --features "${{ matrix.features }}"
0 commit comments