elseware/.drone.yml
2023-11-14 14:14:52 -04: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