From 53ad4d086223a5f50057d3bb56fb3ce2295011f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 3 Nov 2018 19:32:46 +0200 Subject: [PATCH] Remove rustfmt check from gitlab-ci.yml All files are autogenerated and don't conform to what rustfmt would do --- .gitlab-ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1e363aa0..30a9eb343 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - "test" - - "lint" .cargo_cache: &cache cache: @@ -66,11 +65,3 @@ test nightly: image: "rustlang/rust:nightly-slim" allow_failure: true <<: *cargo_test - -rustfmt: - image: "rustlang/rust:nightly-slim" - stage: "lint" - script: - - rustup component add rustfmt-preview - - cargo fmt --version - - cargo fmt -- --color=always --check