From 06f9a82b018efb0479d2a48d6dd7905883f5c28b Mon Sep 17 00:00:00 2001 From: Ava Hahn Date: Wed, 1 Mar 2023 11:22:55 -0800 Subject: [PATCH] fix ci Signed-off-by: Ava Hahn --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6e3660b..4132d23 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ default: image: rust:latest fmt: - stage: lint + stage: build script: - rustfmt --check tests/* - rustfmt --check src/*.rs @@ -10,7 +10,7 @@ fmt: - rustfmt --check src/bin/* lint: - stage: lint + stage: build script: - cargo clippy allow_failure: true