alex/.woodpecker/lint.yml

14 lines
205 B
YAML
Raw Permalink Normal View History

2023-06-03 15:01:17 +02:00
platform: 'linux/amd64'
branches:
exclude: [main]
pipeline:
lint:
image: 'rust:1.70'
commands:
- rustup component add rustfmt
- cargo fmt -- --check
2023-06-05 10:47:23 +02:00
when:
event: [push]