Skip to content

Lint

Lint #2

Workflow file for this run

on:
push:
name: Lint
jobs:
clippy:
runs-on: ubuntu-latest
name: Clippy
steps:
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy --all-targets --all-features
fmt:
name: Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fmt
run: cargo fmt --all -- --check