Skip to content

Bump clap from 4.5.23 to 4.5.24 #1539

Bump clap from 4.5.23 to 4.5.24

Bump clap from 4.5.23 to 4.5.24 #1539

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
rust: [stable, 1.74.0]
steps:
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Install components
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: rustup component add clippy rustfmt
- name: Check formatting
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: cargo fmt -- --check --config group_imports=StdExternalCrate
- name: Clippy
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: cargo clippy --tests -- -D warnings