First merge #1
3 changed files with 30 additions and 0 deletions
10
.woodpecker/build.yml
Normal file
10
.woodpecker/build.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
platform: 'linux/amd64'
|
||||
|
||||
branches:
|
||||
exclude: [main]
|
||||
|
||||
pipeline:
|
||||
build:
|
||||
image: 'rust:1.69'
|
||||
commands:
|
||||
- cargo build
|
||||
10
.woodpecker/clippy.yml
Normal file
10
.woodpecker/clippy.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
platform: 'linux/amd64'
|
||||
|
||||
branches:
|
||||
exclude: [main]
|
||||
|
||||
pipeline:
|
||||
clippy:
|
||||
image: 'rust:1.69'
|
||||
commands:
|
||||
- cargo clippy -- --no-deps -Dwarnings
|
||||
10
.woodpecker/lint.yml
Normal file
10
.woodpecker/lint.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
platform: 'linux/amd64'
|
||||
|
||||
branches:
|
||||
exclude: [main]
|
||||
|
||||
pipeline:
|
||||
lint:
|
||||
image: 'rust:1.69'
|
||||
commands:
|
||||
- cargo fmt -- --check
|
||||
Loading…
Add table
Add a link
Reference in a new issue