Force clippy to run even after check

This commit is contained in:
Felix Krull 2019-05-31 10:39:17 +02:00 committed by Colin Walters
parent 0c07616342
commit 8982c1914e

View File

@ -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