From 8982c1914ee9702b6e530fa3f631eace79027f2c Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Fri, 31 May 2019 10:39:17 +0200 Subject: [PATCH] Force clippy to run even after check --- rust-bindings/rust/.gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rust-bindings/rust/.gitlab-ci.yml b/rust-bindings/rust/.gitlab-ci.yml index 8484271e..50fc1529 100644 --- a/rust-bindings/rust/.gitlab-ci.yml +++ b/rust-bindings/rust/.gitlab-ci.yml @@ -30,9 +30,10 @@ check: stage: check script: - rustup component add clippy rustfmt - - cargo check --all ${CURRENT_FEATURES} - - cargo clippy --all ${CURRENT_FEATURES} - cargo fmt --all -- --check + - cargo check --all ${CURRENT_FEATURES} + - touch src/lib.rs # force clippy + - cargo clippy --all ${CURRENT_FEATURES} gir: stage: check