1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 16:32:59 +01:00
actix-web/.github/workflows/lint.yml

88 lines
2.1 KiB
YAML
Raw Normal View History

2021-02-07 21:33:53 +01:00
name: Lint
on:
pull_request:
types: [opened, synchronize, reopened]
2023-03-15 14:32:55 +01:00
permissions:
2023-09-12 06:24:55 +02:00
contents: read
2023-03-15 14:32:55 +01:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
2021-02-07 21:33:53 +01:00
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2023-03-15 14:32:55 +01:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
2023-03-15 14:32:55 +01:00
with:
toolchain: nightly
components: rustfmt
2023-11-10 15:06:35 +01:00
- name: Check with rustfmt
run: cargo fmt --all -- --check
2021-02-07 21:33:53 +01:00
clippy:
2023-03-15 14:32:55 +01:00
permissions:
2023-11-10 15:06:35 +01:00
contents: read
2023-03-15 14:32:55 +01:00
checks: write # to add clippy checks to PR diffs
2021-02-07 21:33:53 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2021-02-07 21:33:53 +01:00
2023-11-10 15:06:35 +01:00
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
2023-09-12 06:24:55 +02:00
with:
components: clippy
2022-01-03 19:46:04 +01:00
2023-11-10 15:06:35 +01:00
- name: Check with Clippy
uses: giraffate/clippy-action@v1.0.1
with:
2023-09-12 06:24:55 +02:00
reporter: github-pr-check
2023-04-02 04:27:14 +02:00
github_token: ${{ secrets.GITHUB_TOKEN }}
2023-11-10 15:06:35 +01:00
clippy_flags: >-
--workspace --all-features --tests --examples --bins --
-A unknown_lints -D clippy::todo -D clippy::dbg_macro
2022-01-28 21:27:16 +01:00
lint-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
2023-09-12 06:24:55 +02:00
with:
toolchain: nightly
components: rust-docs
2022-01-28 21:27:16 +01:00
- name: Check for broken intra-doc links
2023-09-12 06:24:55 +02:00
env:
RUSTDOCFLAGS: -D warnings
run: cargo +nightly doc --no-deps --workspace --all-features
2023-03-15 14:32:55 +01:00
public-api-diff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-01-28 21:27:16 +01:00
with:
2023-03-15 14:32:55 +01:00
ref: ${{ github.base_ref }}
- uses: actions/checkout@v4
2023-03-15 14:32:55 +01:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
2023-09-12 06:24:55 +02:00
with:
toolchain: nightly-2023-08-25
2023-03-15 14:32:55 +01:00
- uses: taiki-e/cache-cargo-install-action@v1.3.0
2023-09-12 06:24:55 +02:00
with:
tool: cargo-public-api
2023-03-15 14:32:55 +01:00
- name: generate API diff
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