elseware/.drone.yml
jake 2570749fbb
All checks were successful
continuous-integration/drone/push Build is passing
remove another ci cache
2023-11-11 15:18:21 -07:00

30 lines
460 B
YAML

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