2023-07-31 18:13:55 +02:00
|
|
|
platform: 'linux/amd64'
|
|
|
|
|
2023-08-13 20:24:34 +02:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
exclude: [main]
|
|
|
|
event: push
|
2023-07-31 18:13:55 +02:00
|
|
|
|
2023-08-13 20:24:34 +02:00
|
|
|
steps:
|
2023-07-31 18:13:55 +02:00
|
|
|
clippy:
|
|
|
|
image: 'rust:1.70-alpine3.18'
|
|
|
|
commands:
|
|
|
|
- rustup component add clippy
|
|
|
|
- cargo clippy -- --no-deps -Dwarnings
|