basic-jwt/.drone.yml
Pierre HUBERT 21c7c94b10
All checks were successful
continuous-integration/drone/push Build is passing
Add Drone configuration
2024-04-20 13:21:05 +02:00

17 lines
244 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
- rustup component add clippy
- cargo clippy --all-features -- -D warnings
- cargo clippy -- -D warnings
- cargo test --all-features