From 04913c8ddf38996e364ae4a09b6b993318c60c7a Mon Sep 17 00:00:00 2001 From: SFG545 Date: Mon, 23 Feb 2026 20:07:44 -0600 Subject: [PATCH] Add rust_test job to .gitlab-ci.yml for Rust testing --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f65049..7402579 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,3 +17,16 @@ variables: SECRET_DETECTION_ENABLED: 'true' secret_detection: stage: secret-detection + +rust_test: + stage: test + image: rust:1.93.1 + cache: + key: cargo + paths: + - .cargo/ + - target/ + variables: + CARGO_HOME: "$CI_PROJECT_DIR/.cargo" + script: + - cargo test --workspace --all-features --locked