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