Skip to content

build(deps): bump clap from 4.5.22 to 4.5.23 #1943

build(deps): bump clap from 4.5.22 to 4.5.23

build(deps): bump clap from 4.5.22 to 4.5.23 #1943

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: main
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RustCrypto/actions/cargo-cache@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- run: cargo clippy --all-targets -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Run cargo fmt
run: cargo fmt --all -- --check
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
env:
RUSTFLAGS: "-C target-feature=+aes,+ssse3"
steps:
- uses: actions/checkout@v4
- uses: RustCrypto/actions/cargo-cache@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo test