build(deps): bump reqwest from 0.12.23 to 0.12.24 #947
  
    
      This file contains hidden or 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: [pull_request] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust (nightly) | |
| uses: actions-rust-lang/[email protected] | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - name: Check with rustfmt | |
| run: cargo fmt --all -- --check | |
| clippy: | |
| permissions: | |
| contents: read | |
| checks: write # to add clippy checks to PR diffs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust | |
| uses: actions-rust-lang/[email protected] | |
| with: | |
| components: clippy | |
| - name: Check with Clippy | |
| uses: giraffate/[email protected] | |
| with: | |
| reporter: github-pr-check | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| clippy_flags: >- | |
| --workspace --all-features --tests --examples --bins -- | |
| -A unknown_lints -D clippy::todo -D clippy::dbg_macro |