mirror of
https://github.com/actix/actix-extras.git
synced 2025-01-22 23:05:56 +01:00
695369f02f
* added PartialEq to Cors * added a changelog entry * re-ran rustfmt * removed a subtle bug in the new testcase * removed a not so subtle bug in the new testcase * ci: rm public-api-diff job --------- Co-authored-by: Rob Ede <robjtede@icloud.com>
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
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@v4
|
|
|
|
- name: Install Rust (nightly)
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
|
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@v4
|
|
|
|
- name: Install Rust
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
|
with:
|
|
components: clippy
|
|
|
|
- name: Check with Clippy
|
|
uses: giraffate/clippy-action@v1.0.1
|
|
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
|