here_be_dragons/.drone.yml
Nolan Darilek 4926caa1ce
Some checks failed
continuous-integration/drone/push Build is failing
Install rustfmt.
2022-03-18 12:42:59 -05:00

22 lines
432 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: rust
commands:
- rustup component add 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