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 c48f7a9 commit 7e620faCopy full SHA for 7e620fa
.github/workflows/CI.yml
@@ -56,6 +56,7 @@ jobs:
56
runs-on: ubuntu-latest
57
steps:
58
- uses: actions/checkout@v5
59
+ - uses: dtolnay/rust-toolchain@stable
60
- name: Remove the example crates to exclude effects to dependencies from them
61
run: rm -r ./examples/* && cargo new --lib --edition 2021 examples/dummy
62
# we could probably replace all these with the cargo MSRV resolver ...
@@ -68,8 +69,9 @@ jobs:
68
69
- run: cargo update -p async-compression --precise 0.4.23
70
- run: cargo update -p flate2 --precise 1.0.35
71
- run: cargo update -p itoa --precise 1.0.15
72
+ - run: cargo generate-lockfile
73
- uses: dtolnay/[email protected]
- - run: cargo check -p tower-http --all-features
74
+ - run: cargo check -p tower-http --all-features --locked
75
76
style:
77
needs: check
0 commit comments