Skip to content

Commit d509b0c

Browse files
committed
ci: require that Cargo.lock is up to date
Versions in the lockfile should be compatible with MSRV and not automatically downgraded in CI.
1 parent 4d624d8 commit d509b0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ jobs:
139139
- name: Tests
140140
env:
141141
RUST_BACKTRACE: 1
142-
run: cargo nextest run --workspace
142+
run: cargo nextest run --workspace --locked
143143

144144
- name: Doc-Tests
145145
env:
146146
RUST_BACKTRACE: 1
147-
run: cargo test --workspace --doc
147+
run: cargo test --workspace --locked --doc
148148

149149
- name: Test cargo vendor
150150
run: cargo vendor

0 commit comments

Comments
 (0)