Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.

Bump clap from 4.5.48 to 4.5.50 #235

Bump clap from 4.5.48 to 4.5.50

Bump clap from 4.5.48 to 4.5.50 #235

Workflow file for this run

name: CI
on:
pull_request:
types: [ opened, reopened, synchronize ]
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
components: rustfmt, clippy
- name: Check format
run: cargo fmt --check
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build
- name: Run tests
run: cargo test