diff --git a/.woodpecker/.lint.yml b/.woodpecker/.rustfmt.yml similarity index 100% rename from .woodpecker/.lint.yml rename to .woodpecker/.rustfmt.yml diff --git a/.woodpecker/.test.yml b/.woodpecker/.test.yml new file mode 100644 index 0000000..8286cef --- /dev/null +++ b/.woodpecker/.test.yml @@ -0,0 +1,13 @@ +pipeline: + clippy: + image: 'rust:1.57' + commands: + - cargo clippy -- -D clippy::all --no-deps + + tests: + image: 'rust:1.57' + commands: + - cargo test + +when: + event: pull_request