Skip to content

chore(deps): bump clap from 4.5.57 to 4.5.59 #26

chore(deps): bump clap from 4.5.57 to 4.5.59

chore(deps): bump clap from 4.5.57 to 4.5.59 #26

Workflow file for this run

name: CI 🧪
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Installing Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test
- name: Build release
run: cargo build --release