First merge #1

Merged
Jef Roosens merged 26 commits from dev into main 2023-05-17 23:33:39 +02:00
3 changed files with 30 additions and 0 deletions
Showing only changes of commit 3126f81200 - Show all commits

10
.woodpecker/build.yml Normal file
View 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
View 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
View file

@ -0,0 +1,10 @@
platform: 'linux/amd64'
branches:
exclude: [main]
pipeline:
lint:
image: 'rust:1.69'
commands:
- cargo fmt -- --check