--- kind: pipeline type: docker name: test elseware concurrency: limit: 1 steps: - name: build image: rustlang/rust:nightly commands: - cargo build - name: clippy! image: rustlang/rust:nightly commands: - cargo clippy -- --deny warnings - name: test image: rustlang/rust:nightly commands: - cargo test --jobs 1 volumes: - name: cache host: path: /home/drone/.cargo - name: target-cache host: path: /home/drone/cargo-cache