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 12155bdCopy full SHA for 12155bd
.github/workflows/test.yml
@@ -63,6 +63,11 @@ jobs:
63
cargo check --all-targets --verbose --no-default-features --features "${{ matrix.features }}"
64
# A failing `cargo check` always fails the build
65
continue-on-error: false
66
+ # Pin a time version with a compatible MSRV
67
+ - name: Pin time version
68
+ if: ${{ matrix.rust != 'nightly' && matrix.rust != 'stable' }}
69
+ run: |
70
+ cargo update --package time --precise 0.3.20
71
- name: Test
72
# NOTE: Running --all-targets does not include doc tests
73
run: |
0 commit comments