You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
612 B

---
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
depends_on: [check]
commands:
- cargo fmt --all -- --check
- cargo clippy -- -D warnings
- name: test
image: guangie88/rustfmt-clippy:1.51.0-stable
depends_on: [check]
commands:
- cargo test --verbose --all
- name: package
image: guangie88/rustfmt-clippy:1.51.0-stable
depends_on: [test, lint]
commands:
- cargo build --verbose --all