From e88b79e6a823a0a453fc4991b3324599fa060f09 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 May 2026 19:28:49 +0100 Subject: [PATCH] Add clippy job using today's stable Signed-off-by: Ian Jackson --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) 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" -- 2.30.2