File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 68
68
os: [ubuntu-latest, windows-latest, macOS-latest]
69
69
steps:
70
70
- uses: actions/checkout@v4
71
+ - uses: dtolnay/rust-toolchain@master
72
+ if: matrix.rust.name == 'MSRV'
73
+ with:
74
+ toolchain: nightly-2022-11-05
75
+ - name: cargo -Z minimal-versions update
76
+ run: |
77
+ cargo -Z minimal-versions update
78
+ if: matrix.rust.name == 'MSRV'
71
79
- uses: dtolnay/rust-toolchain@master
72
80
with:
73
81
toolchain: ${{matrix.rust.toolchain}}
78
86
~/.cargo/git
79
87
~/.cargo/registry
80
88
target
81
- key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}}"
89
+ key: "${{matrix.rust.toolchain}} on ${{ runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}}"
82
90
- run: cargo test --lib
83
91
- run: cargo test --doc
84
92
You can’t perform that action at this time.
0 commit comments