Skip to content

refactor: restructure the workspace #18

refactor: restructure the workspace

refactor: restructure the workspace #18

Workflow file for this run

name: Clippy
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Clippy
run: rustup component add clippy
- name: Clippy version
run: cargo clippy --version
- name: Run Clippy
run: cargo clippy --all-features -- -D warnings