diff --git a/.woodpecker/tests.yaml b/.woodpecker/tests.yaml new file mode 100644 index 0000000..de83d87 --- /dev/null +++ b/.woodpecker/tests.yaml @@ -0,0 +1,15 @@ +when: + event: + - push + +steps: + clippy: + image: rust:1.91.1-bullseye + commands: + - cargo clippy + + test: + image: rust:1.91.1-bullseye + commands: + - cargo test +