2023-04-28 17:23:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: cargo_check
|
|
|
|
image: rust
|
|
|
|
commands:
|
|
|
|
- rustup component add clippy
|
2023-04-29 07:06:20 +00:00
|
|
|
- cargo clippy --all-features -- -D warnings
|
2023-04-28 17:47:22 +00:00
|
|
|
- cargo test --all-features
|
2023-04-28 17:23:07 +00:00
|
|
|
|
|
|
|
|