1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/.github/workflows/lint.yml

94 lines
2.3 KiB
YAML
Raw Normal View History

2021-02-07 20:33:53 +00:00
name: Lint
on:
pull_request:
types: [opened, synchronize, reopened]
2023-03-15 13:32:55 +00:00
permissions:
2023-09-12 04:24:55 +00:00
contents: read
2023-03-15 13:32:55 +00:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
2021-02-07 20:33:53 +00:00
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2023-03-15 13:32:55 +00:00
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
2023-03-15 13:32:55 +00:00
with:
toolchain: nightly
components: rustfmt
- name: Check with Rustfmt
2023-11-10 14:06:35 +00:00
run: cargo fmt --all -- --check
2021-02-07 20:33:53 +00:00
clippy:
2023-03-15 13:32:55 +00:00
permissions:
2023-11-10 14:06:35 +00:00
contents: read
2023-03-15 13:32:55 +00:00
checks: write # to add clippy checks to PR diffs
2021-02-07 20:33:53 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2021-02-07 20:33:53 +00:00
2023-11-10 14:06:35 +00:00
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
2023-09-12 04:24:55 +00:00
with:
components: clippy
2022-01-03 18:46:04 +00:00
2023-11-10 14:06:35 +00:00
- name: Check with Clippy
uses: giraffate/clippy-action@v1.0.1
with:
2023-09-12 04:24:55 +00:00
reporter: github-pr-check
2023-04-02 02:27:14 +00:00
github_token: ${{ secrets.GITHUB_TOKEN }}
2023-11-10 14:06:35 +00:00
clippy_flags: >-
--workspace --all-features --tests --examples --bins --
-A unknown_lints -D clippy::todo -D clippy::dbg_macro
2022-01-28 20:27:16 +00:00
lint-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
2023-09-12 04:24:55 +00:00
with:
toolchain: nightly
components: rust-docs
2022-01-28 20:27:16 +00:00
- name: Check for broken intra-doc links
2023-09-12 04:24:55 +00:00
env:
RUSTDOCFLAGS: -D warnings
run: cargo +nightly doc --no-deps --workspace --all-features
2023-03-15 13:32:55 +00:00
public-api-diff:
runs-on: ubuntu-latest
steps:
- name: Checkout main branch
uses: actions/checkout@v4
2022-01-28 20:27:16 +00:00
with:
2023-03-15 13:32:55 +00:00
ref: ${{ github.base_ref }}
- name: Checkout PR branch
uses: actions/checkout@v4
2023-03-15 13:32:55 +00:00
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
2023-09-12 04:24:55 +00:00
with:
toolchain: nightly-2023-08-25
2023-03-15 13:32:55 +00:00
- name: Install cargo-public-api
uses: taiki-e/install-action@v2.27.2
2023-09-12 04:24:55 +00:00
with:
tool: cargo-public-api
2023-03-15 13:32:55 +00:00
- name: Generate API diff
2023-03-15 13:32:55 +00:00
run: |
for f in $(find -mindepth 2 -maxdepth 2 -name Cargo.toml); do
cargo public-api --manifest-path "$f" diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }}
done