Skip to content

fix(deps): update rust crate clap to v4.5.17 #883

fix(deps): update rust crate clap to v4.5.17

fix(deps): update rust crate clap to v4.5.17 #883

Workflow file for this run

name: "test"
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
repository: ${{github.event.pull_request.head.repo.full_name || github.repository }}
- name: Install LLVM
uses: KyleMayes/install-llvm-action@v1
with:
version: "16.0"
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install Rust problem matchers
uses: r7kamura/rust-problem-matchers@v1
- name: Install cargo-tarpaulin
uses: taiki-e/install-action@v2
with:
tool: cargo-tarpaulin
- name: Use dependency cache
uses: Swatinem/rust-cache@v2
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: tarpaulin
args: -o lcov --engine llvm --skip-clean
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}