BasicOIDC/.drone.yml

14 lines
180 B
YAML
Raw Normal View History

2022-05-05 17:13:47 +02:00
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
2022-05-05 17:55:37 +02:00
- rustup component add clippy
2022-09-02 15:56:25 +02:00
- cargo clippy -- -D warnings
2022-09-02 15:41:57 +02:00
- cargo test
2022-05-05 17:13:47 +02:00