update drone ci file
This commit is contained in:
parent
b87ddc393b
commit
c12fb24404
18
.drone.yml
18
.drone.yml
@ -1,9 +1,23 @@
|
||||
---
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: check
|
||||
image: guangie88/rustfmt-clippy:1.51.0-stable
|
||||
commands:
|
||||
- cargo check --workspace
|
||||
- name: lint
|
||||
image: guangie88/rustfmt-clippy:1.51.0-stable
|
||||
commands:
|
||||
- cargo fmt --all -- --check
|
||||
- cargo clippy -- -D warnings
|
||||
- name: test
|
||||
image: rust:1.51.0
|
||||
image: guangie88/rustfmt-clippy:1.51.0-stable
|
||||
commands:
|
||||
- cargo test --verbose --all
|
||||
- name: package
|
||||
image: guangie88/rustfmt-clippy:1.51.0-stable
|
||||
depends_on: [check, test, lint]
|
||||
commands:
|
||||
- cargo build --verbose --all
|
||||
- cargo test --verbose --all
|
||||
|
Loading…
Reference in New Issue
Block a user