From 297b0025553a630ed54980d87d1181a4e384cefc Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Fri, 14 Jun 2024 08:38:38 +0200 Subject: [PATCH 1/2] First CI test --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b17b35c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: cargo_check + image: rust + commands: + - rustup component add clippy + - cargo clippy -- -D warnings + - cargo test + + -- 2.45.2 From 61622cd79b884167ce3ff19844d003cfd3502ea4 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Fri, 14 Jun 2024 08:41:28 +0200 Subject: [PATCH 2/2] Update --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index b17b35c..6051184 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,6 +9,6 @@ steps: commands: - rustup component add clippy - cargo clippy -- -D warnings - - cargo test + - cargo test --all-features -- 2.45.2