From 0fcd18012c0069266d7f94f232eb6971dae72d53 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 2 Jul 2025 12:54:10 -0600 Subject: chore: use make target to setup and run lint, test jobs --- .gitlab-ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf5e6ff5..375ce308 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,15 +36,13 @@ unit: stage: test needs: [] script: - - cargo test + - make test lint: image: rust:latest stage: test needs: [] before_script: - - rustup component add clippy - - rustup component add rustfmt + - make setup script: - - cargo fmt - - cargo clippy -- -D warnings + - make lint -- cgit v1.2.3