crieur/.drone.yml
koalp 9dd501418e
All checks were successful
continuous-integration/drone/pr Build is passing
chore(ci): add cmake to the test stage
2021-04-29 02:14:30 +02:00

24 lines
420 B
YAML

---
kind: pipeline
name: global
steps:
- name : lint
image: rust
pull: true
errignore: true
commands:
- apt-get update && apt-get install -y cmake
- rustup component add rustfmt
- rustup component add clippy
- cargo clippy
- cargo fmt -- --check
- name : test
image: rust
pull: true
errignore: true
commands:
- apt-get update && apt-get install -y cmake
- cargo test --all
- cargo build