From 34f85ec4914910ba5561331110651b4a4041b9bb Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 28 Aug 2025 06:25:40 +0000 Subject: [PATCH] Add missing CGI module in Drone configuration (#129) Reviewed-on: https://gitea.communiquons.org/pierre/GrammalecteClient/pulls/129 --- .drone.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6051184..258c291 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,8 +7,7 @@ steps: - name: cargo_check image: rust commands: + - apt update && apt install -y python3-legacy-cgi - rustup component add clippy - cargo clippy -- -D warnings - cargo test --all-features - -