Skip to content

fix: clippy

fix: clippy #368

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
RUSTFLAGS: -D warnings
RUSTUP_MAX_RETRIES: 10
jobs:
test:
name: cargo test (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
- name: Test cases
run: |
cargo test --workspace --all --verbose
cargo build --workspace --all --verbose --release --manifest-path examples/Cargo.toml
- name: Show Examples Release files
if: matrix.os != 'windows-latest'
run: |
ls -la examples/target/release
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
components: clippy
- name: Check Clippy
run: |
cargo clippy --workspace --all-targets
cargo clippy --workspace --all-targets --manifest-path examples/Cargo.toml
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
- name: Check formatting
run: |
cargo fmt --all -- --check
cargo fmt --all --manifest-path examples/Cargo.toml -- --check
docs:
name: cargo doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
- name: Check documenting
run: |
RUSTDOCFLAGS="-D warnings --cfg docsrs" cargo doc --workspace --all-features --no-deps