You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dfm/.drone.yml

38 lines
655 B

---
kind: pipeline
type: docker
name: CI
steps:
- name: cargo check
image: rust
commands:
- cargo check
depends_on:
- clone
- name: cargo test
image: rust
commands:
- cargo test
depends_on:
- clone
- name: cargo format
image: rust
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check
depends_on:
- clone
- name: cargo clippy
image: rust
commands:
- rustup component add clippy
- cargo clippy -- -D warnings
depends_on:
- clone
---
kind: signature
hmac: 72c9d6b9c30c5bba944fadcee41b4a3d0c634bd15e4da564d776a0a74dc7c574