From 5cf5907a86b62ad719d42536312029d979b0f061 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 18 Jun 2021 20:39:16 -0600 Subject: [PATCH] add clippy to ci --- .drone.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 46e90f4..7b72752 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,7 @@ concurrency: limit: 1 steps: -- name: cargo build +- name: build image: rustlang/rust:nightly volumes: - name: cache @@ -16,7 +16,16 @@ steps: path: /drone/src/target commands: - cargo build -- name: cargo test +- name: clippy! + image: rustlang/rust:nightly + volumes: + - name: cache + path: /usr/local/cargo + - name: target-cache + path: /drone/src/target + commands: + - cargo clippy +- name: test image: rustlang/rust:nightly volumes: - name: cache