scratch repo for intrusive networking
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 27 lines 591 B view raw
1name: Clippy Lints 2 3on: 4 push: 5 branches: ["main"] 6 pull_request: 7 branches: ["main"] 8 workflow_dispatch: 9 10jobs: 11 clippy: 12 name: "Clippy all crates" 13 runs-on: ubuntu-latest 14 steps: 15 - uses: actions/checkout@v4 16 17 # 18 # COBS ACC 19 - name: Clippy cobs-acc (all features) 20 working-directory: ./crates/cobs-acc 21 run: RUSTFLAGS="-Dwarnings" cargo clippy --all-features 22 # 23 # ERGOT Prime 24 - name: Clippy ergot (all features) 25 working-directory: ./crates/ergot 26 run: RUSTFLAGS="-Dwarnings" cargo clippy --all-features 27