From cdb52bc9de57750a492b0424a56ee88e9a9522ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Thu, 23 Mar 2023 15:17:23 +0000 Subject: [PATCH] :green_heart: Switched to fully qualified rust image version number --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d131d1..0746ff7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: rust:latest + image: rust:1.68 stages: - test @@ -28,4 +28,5 @@ lint-test-job: stage: test script: - echo "Linting code..." - - cargo clippy + - rustup component add clippy + - cargo clippy -- -D warnings