2024-12-27 20:02:08 +01:00
|
|
|
name: Clippy check
|
|
|
|
on:
|
2024-12-27 20:32:22 +01:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'src/**'
|
|
|
|
- '.github/**'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'src/**'
|
|
|
|
- '.github/**'
|
2024-12-27 20:02:08 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
RUSTFLAGS: "-Dwarnings"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
clippy_check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run Clippy
|
|
|
|
run: cargo clippy --all-targets --all-features
|