Skip to content

chore: fix clippy lints (dead_code, map_or, collapsible_if, too_many_… #27

chore: fix clippy lints (dead_code, map_or, collapsible_if, too_many_…

chore: fix clippy lints (dead_code, map_or, collapsible_if, too_many_… #27

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Clippy (all features)
run: cargo clippy --all-features -- -D warnings
- name: Test (all features)
run: cargo test --all-features
- name: Build (default features)
run: cargo build
- name: Build (github feature)
run: cargo build --features github