chore: fix clippy and rust problems #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
format: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- id: cache | |
name: Enable Workflow Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: format | |
name: Run Formatting-Checks | |
run: cargo fmt --check | |
check: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
needs: format | |
strategy: | |
matrix: | |
toolchain: [stable, nightly] | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: clippy | |
- id: cache | |
name: Enable Workflow Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: check | |
name: Run Build Checks | |
run: cargo check --workspace --all-targets --all-features | |
- id: lint | |
name: Run Lint Checks | |
run: cargo clippy --workspace --all-targets --all-features -- -D clippy::correctness -D clippy::suspicious | |
- id: doc | |
name: Run Documentation Checks | |
run: cargo test --doc | |
internal: | |
name: Units and Integrations | |
runs-on: ubuntu-latest | |
needs: check | |
strategy: | |
matrix: | |
toolchain: [stable, nightly] | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: llvm-tools-preview | |
- id: cache | |
name: Enable Job Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: test | |
name: Run Code Tests | |
run: cargo test --workspace --all-targets --all-features | |
- id: tools | |
name: Install Coverage Tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-llvm-cov, cargo-nextest | |
- id: coverage | |
name: Generate Coverage Report | |
run: cargo llvm-cov nextest --workspace --all-targets --all-features |