From: Ian Jackson Date: Sun, 10 May 2026 18:28:49 +0000 (+0100) Subject: Add clippy job using today's stable X-Git-Tag: debian/1.3.3~1^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=e88b79e6a823a0a453fc4991b3324599fa060f09;p=hippotat.git Add clippy job using today's stable Signed-off-by: Ian Jackson --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5144e2..db32a50 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,15 @@ cargo-test: script: - cargo test --locked --workspace --verbose --all-features +cargo-clippy: + stage: test + # This can fail when new lints turn up. So we pin the compiler. + # We should update this (when we switch from trixie to forky, at least). + image: "rust:1.95.0" + script: + - rustup component add clippy + - cargo clippy --locked --workspace --all-features + cargo-update-test-nightly: stage: test image: "rustlang/rust:nightly"