chore(deps): update rust crate clap to 4.5.40 #144
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
CI: 1 | |
jobs: | |
clippy: | |
name: Clippy validation | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Rust with clippy | |
uses: actions-rust-lang/setup-rust-toolchain@9d7e65c320fdb52dcd45ffaa68deb6c02c8754d9 # v1.12.0 | |
with: | |
toolchain: stable | |
components: clippy | |
cache: false | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8 | |
with: | |
prefix-key: v2-rust | |
cache-on-failure: true | |
- name: Run clippy | |
uses: clechasseur/rs-clippy-check@24d66924f748522acf015e8642b7fb8cd81b4dbc # v4.0.3 | |
with: | |
args: --workspace --all-targets --feature-powerset -- -D warnings | |
tool: cargo-hack | |
cache-key: v1-clippy | |
fmt: | |
name: Rustfmt check | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Rust nightly with rustfmt | |
uses: actions-rust-lang/setup-rust-toolchain@9d7e65c320fdb52dcd45ffaa68deb6c02c8754d9 # v1.12.0 | |
with: | |
toolchain: nightly | |
components: rustfmt | |
cache: false | |
- name: Run Rustfmt | |
uses: clechasseur/rs-fmt-check@79f30e1d92a7a4fbc417d377ef8172e445f58555 # v2.0.9 | |
with: | |
args: --all | |
build: | |
name: Build on ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-24.04, macos-14, windows-2022 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Rust | |
uses: actions-rust-lang/setup-rust-toolchain@9d7e65c320fdb52dcd45ffaa68deb6c02c8754d9 # v1.12.0 | |
with: | |
toolchain: stable | |
cache: false | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8 | |
with: | |
prefix-key: v4-rust | |
cache-on-failure: true | |
- name: Install required tools | |
uses: taiki-e/install-action@735e5933943122c5ac182670a935f54a949265c1 # v2.52.4 | |
with: | |
tool: just@1.40.0,cargo-hack@0.6.36 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run checks on feature powerset | |
run: just check-powerset | |
- name: Run tests | |
run: just test |