Skip to content

chore(deps): bump clap from 4.5.19 to 4.5.20 #121

chore(deps): bump clap from 4.5.19 to 4.5.20

chore(deps): bump clap from 4.5.19 to 4.5.20 #121

Workflow file for this run

name: "Format & Clippy"
on:
push:
branches: [main]
pull_request:
env:
RUSTFLAGS: "-Dwarnings"
jobs:
fmt:
runs-on: ubuntu-latest
name: stable / fmt
steps:
- uses: actions/checkout@v4
- name: Check formating
run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
name: stable / clippy
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features