From 5ef68507b88ff3b53d49108f45659802854a90d2 Mon Sep 17 00:00:00 2001 From: Shimun Date: Sat, 8 Jun 2019 20:07:31 +0200 Subject: [PATCH] update image --- .drone.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index c6c3859..8cd84b5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,15 +3,27 @@ name: default steps: - name: test - image: rust:1.34.0 + image: rust:1.35.0 environment: CARGO_HOME: /drone/.cargo commands: - cargo test + - name: fmt + image: rust:1.35.0 + environment: + CARGO_HOME: /drone/.cargo + commands: - rustup component add rustfmt - cargo fmt -- --check + - name: clippy + image: rust:1.35.0 + environment: + CARGO_HOME: /drone/.cargo + commands: + - rustup component add clippy + - cargo clippy - name: build_relase - image: rust:1.34.0 + image: rust:1.35.0 environment: CARGO_HOME: /drone/.cargo commands: