Skip to content

fix(deps): update rust crate anyhow to v1.0.86 #856

fix(deps): update rust crate anyhow to v1.0.86

fix(deps): update rust crate anyhow to v1.0.86 #856

Workflow file for this run

name: "clippy"
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
clippy:
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: nightly
override: true
components: rustfmt, clippy
- name: Install Rust problem matchers
uses: r7kamura/rust-problem-matchers@v1
- name: Use dependency cache
uses: Swatinem/rust-cache@v2
- name: cargo +nightly clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings