the clip has spoken #42

Merged
jake merged 25 commits from clippylint into master 2021-06-19 02:48:25 -04:00
Showing only changes of commit 5cf5907a86 - Show all commits

View File

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