2024-06-14 06:38:38 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: cargo_check
|
|
|
|
image: rust
|
|
|
|
commands:
|
|
|
|
- rustup component add clippy
|
|
|
|
- cargo clippy -- -D warnings
|
2024-06-14 06:41:28 +00:00
|
|
|
- cargo test --all-features
|
2024-06-14 06:38:38 +00:00
|
|
|
|
|
|
|
|