here_be_dragons/.drone.yml
Nolan Darilek 3737cdee6a
All checks were successful
continuous-integration/drone/push Build is passing
Install Clippy.
2022-03-18 12:45:53 -05:00

22 lines
439 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: rust
commands:
- rustup component add clippy rustfmt
- cargo fmt --check
- cargo build --all
- cargo build --examples --all
- cargo test --verbose --all
- cargo clippy
- name: release
image: rust
commands:
- cargo build
environment:
CARGO_REGISTRY_TOKEN:
from_secret: cargo_registry_token