Skip to content

Bump url from 2.5.3 to 2.5.4 #1374

Bump url from 2.5.3 to 2.5.4

Bump url from 2.5.3 to 2.5.4 #1374

Workflow file for this run

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