diff --git a/.woodpecker/cargo-checks.yml b/.woodpecker/cargo-checks.yml index 0dca0bc..a5248ba 100644 --- a/.woodpecker/cargo-checks.yml +++ b/.woodpecker/cargo-checks.yml @@ -1,17 +1,20 @@ when: - event: pull_request - event: push - - path: - include: ['*.rs'] + - path: + include: ["*.rs"] steps: - cargo_clippy: + configure_rustup: image: rust commands: | rustup update stable && rustup default stable rustup component add clippy - # cargo clippy --all-targets --all-features + cargo_clippy: + image: rust + commands: + - cargo clippy --all-targets --all-features cargo_test: image: rust commands: - - cargo test + - cargo test --all-features