diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml new file mode 100644 index 0000000..f792be9 --- /dev/null +++ b/.woodpecker/build.yml @@ -0,0 +1,10 @@ +platform: 'linux/amd64' + +branches: + exclude: [main] + +pipeline: + build: + image: 'rust:1.69' + commands: + - cargo build diff --git a/.woodpecker/clippy.yml b/.woodpecker/clippy.yml new file mode 100644 index 0000000..c100904 --- /dev/null +++ b/.woodpecker/clippy.yml @@ -0,0 +1,10 @@ +platform: 'linux/amd64' + +branches: + exclude: [main] + +pipeline: + clippy: + image: 'rust:1.69' + commands: + - cargo clippy -- --no-deps -Dwarnings diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml new file mode 100644 index 0000000..01065f8 --- /dev/null +++ b/.woodpecker/lint.yml @@ -0,0 +1,10 @@ +platform: 'linux/amd64' + +branches: + exclude: [main] + +pipeline: + lint: + image: 'rust:1.69' + commands: + - cargo fmt -- --check