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 475ee81 commit ce4893cCopy full SHA for ce4893c
.github/workflows/msrv.yaml
@@ -15,7 +15,7 @@ env:
15
CARGO_TERM_COLOR: always
16
17
jobs:
18
- verify-build:
+ check-workspace:
19
runs-on: ubuntu-latest
20
21
steps:
@@ -36,11 +36,11 @@ jobs:
36
- name: Generate Cargo.lock
37
run: cargo generate-lockfile
38
39
- - name: Rust Cache
+ - name: Cache Rust toolchain and build artifacts
40
uses: Swatinem/rust-cache@v2
41
with:
42
# Distinguished by the action name to avoid sharing!
43
shared-key: "msrv"
44
45
- - name: Check
46
- run: cargo check --verbose --all-targets --all-features
+ - name: Check workspace
+ run: cargo check --locked --workspace --verbose --all-targets --all-features
0 commit comments