2022-05-05 15:13:47 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: cargo_check
|
|
|
|
image: rust
|
|
|
|
commands:
|
2022-05-05 15:55:37 +00:00
|
|
|
- rustup component add clippy
|
2022-09-02 13:56:25 +00:00
|
|
|
- cargo clippy -- -D warnings
|
2022-09-02 13:41:57 +00:00
|
|
|
- cargo test
|
2022-05-05 15:13:47 +00:00
|
|
|
|