Bump clap from 4.5.20 to 4.5.23 #1373
Workflow file for this run
This file contains 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: Lint | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Lint with many combinations of feature flags | |
features: | |
# No optional features | |
- '' | |
# Each optional feature on its own | |
- sql-data-source | |
- file-system-data-source | |
- metrics-data-source | |
# All optional features together | |
- sql-data-source,file-system-data-source,metrics-data-source | |
env: | |
RUST_LOG: info | |
steps: | |
- uses: styfle/cancel-workflow-action@0.12.1 | |
name: Cancel Outdated Builds | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
- name: Clippy | |
run: cargo clippy --workspace --no-default-features --features "${{ matrix.features }}" -- -D warnings |