diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..425ee1f --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,13 @@ +when: + branch: + - main + event: + - push + - pull_request + +steps: + - name: test + image: rust:latest + commands: + - cargo check + - cargo test