Actix-Demo/.drone.yml
2021-04-28 16:37:04 +05:30

24 lines
561 B
YAML

---
kind: pipeline
name: default
steps:
- name: check
image: guangie88/rustfmt-clippy:1.51.0-stable
commands:
- cargo fmt --all -- --check
- cargo check --workspace
- name: lint
image: guangie88/rustfmt-clippy:1.51.0-stable
commands:
- cargo clippy -- -D warnings
- name: test
image: guangie88/rustfmt-clippy:1.51.0-stable
commands:
- cargo test --all
- name: package
image: guangie88/rustfmt-clippy:1.51.0-stable
depends_on: [check, test, lint]
commands:
- cargo build --release --all