Skip to content

Bump clap from 4.5.37 to 4.5.39 (#48) #105

Bump clap from 4.5.37 to 4.5.39 (#48)

Bump clap from 4.5.37 to 4.5.39 (#48) #105

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
types:
- opened
- synchronize
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Lint
run: cargo clippy --verbose