mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
f61fcbe840
Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.42.17 to 2.42.22. - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/install-action/compare/v2.42.17...v2.42.22) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
116 lines
3 KiB
YAML
116 lines
3 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
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.9.0
|
|
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.9.0
|
|
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
|
|
|
|
lint-docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Rust (nightly)
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
|
|
with:
|
|
toolchain: nightly
|
|
components: rust-docs
|
|
|
|
- name: Check for broken intra-doc links
|
|
env:
|
|
RUSTDOCFLAGS: -D warnings
|
|
run: cargo +nightly doc --no-deps --workspace --all-features
|
|
|
|
check-external-types:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Rust (nightly-2024-05-01)
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
|
|
with:
|
|
toolchain: nightly-2024-05-01
|
|
|
|
- name: Install just
|
|
uses: taiki-e/install-action@v2.42.22
|
|
with:
|
|
tool: just
|
|
|
|
- name: Install cargo-check-external-types
|
|
uses: taiki-e/cache-cargo-install-action@v2.0.1
|
|
with:
|
|
tool: cargo-check-external-types
|
|
|
|
- name: check external types
|
|
run: just check-external-types-all +nightly-2024-05-01
|
|
|
|
public-api-diff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout main branch
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.base_ref }}
|
|
|
|
- name: Checkout PR branch
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Rust (nightly-2024-06-07)
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
|
|
with:
|
|
toolchain: nightly-2024-06-07
|
|
|
|
- name: Install cargo-public-api
|
|
uses: taiki-e/install-action@v2.42.22
|
|
with:
|
|
tool: cargo-public-api
|
|
|
|
- name: Generate API diff
|
|
run: |
|
|
for f in $(find -mindepth 2 -maxdepth 2 -name Cargo.toml); do
|
|
cargo public-api --manifest-path "$f" --simplified diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }}
|
|
done
|