From d8e3d49d95b807b8c6164c1cc940b251fffc3792 Mon Sep 17 00:00:00 2001 From: Adrien Date: Mon, 23 Sep 2024 20:52:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Install=20clippy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .woodpecker/.validate.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.woodpecker/.validate.yaml b/.woodpecker/.validate.yaml index edae8ed..90ef551 100644 --- a/.woodpecker/.validate.yaml +++ b/.woodpecker/.validate.yaml @@ -8,6 +8,7 @@ steps: - name: clippy image: rust:latest commands: + - rustup component add clippy - cargo clippy --all --all-features -- -D warnings - name: build