2024-02-25 10:54:02 -05:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
|
|
|
- event: push
|
|
|
|
- path: "src/*"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
cargo_clippy:
|
2024-02-25 10:55:42 -05:00
|
|
|
image: rust
|
2024-02-25 10:59:16 -05:00
|
|
|
commands: |
|
|
|
|
rustup update stable && rustup default stable
|
|
|
|
rustup component add clippy
|
2024-02-25 11:33:20 -05:00
|
|
|
# cargo clippy --all-targets --all-features
|
2024-02-25 10:54:02 -05:00
|
|
|
cargo_test:
|
2024-02-25 10:59:16 -05:00
|
|
|
image: rust
|
2024-02-25 10:54:02 -05:00
|
|
|
commands:
|
|
|
|
- cargo test
|