Skip to content

Bump reqwest from 0.12.8 to 0.12.9 #205

Bump reqwest from 0.12.8 to 0.12.9

Bump reqwest from 0.12.8 to 0.12.9 #205

Workflow file for this run

on:
push:
pull_request:
name: Lint
permissions:
contents: read
checks: write
jobs:
clippy_check:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Run cargo fmt
run: cargo fmt --all --check --verbose
- uses: clechasseur/rs-clippy-check@v3
if: matrix.rust == 'stable'
with:
args: --all-features -- -D warnings
- uses: clechasseur/rs-clippy-check@v3
if: matrix.rust != 'stable'
with:
args: --all-features -- -W warnings