gemfreely/.drone.yml

11 lines
189 B
YAML
Raw Normal View History

kind: pipeline
name: build-and-test
steps:
- name: test
image: rust:1.76-slim
commands:
- rustup component add rustfmt
- cargo build --verbose --all
- cargo test --verbose --all