diff --git a/.woodpecker.yml b/.woodpecker.yml index 293cdee..74dd84d 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,8 +1,16 @@ steps: + depends: + image: rust:1.73 + commands: + - apt update + - apt install libudev-dev + build: image: rust:1.73 commands: - - apt update - - apt install libudev-dev - - cargo build --release - - cargo test + - cargo build --release + + test: + image: rust:1.73 + commands: + - cargo test