Skip to content

build(deps): update dependencies and reorganize Cargo.toml #2

build(deps): update dependencies and reorganize Cargo.toml

build(deps): update dependencies and reorganize Cargo.toml #2

Workflow file for this run

name: Clippy
on: [pull_request, push]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@stable
- name: Clippy
run: cargo clippy --verbose -- -D warnings