light-openid/.drone.yml

15 lines
211 B
YAML
Raw Normal View History

2023-04-28 17:23:07 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
- rustup component add clippy
2023-04-29 07:06:20 +00:00
- cargo clippy --all-features -- -D warnings
- cargo test --all-features
2023-04-28 17:23:07 +00:00