1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/.github/workflows/clippy-fmt.yml

82 lines
2 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:
2023-03-11 23:19:03 +00:00
- uses: actions/checkout@v3
2023-03-15 13:32:55 +00:00
2023-09-12 04:24:55 +00:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
2023-03-15 13:32:55 +00:00
with:
toolchain: nightly
components: rustfmt
- run: cargo fmt --all -- --check
2021-02-07 20:33:53 +00:00
clippy:
2023-03-15 13:32:55 +00:00
permissions:
checks: write # to add clippy checks to PR diffs
2021-02-07 20:33:53 +00:00
runs-on: ubuntu-latest
steps:
2023-03-11 23:19:03 +00:00
- uses: actions/checkout@v3
2021-02-07 20:33:53 +00:00
2023-09-12 04:24:55 +00:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
with:
components: clippy
2022-01-03 18:46:04 +00:00
2023-09-12 04:24:55 +00:00
- 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-08-29 00:11:11 +00:00
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo -Aunknown_lints
2022-01-28 20:27:16 +00:00
lint-docs:
runs-on: ubuntu-latest
steps:
2023-03-11 23:19:03 +00:00
- uses: actions/checkout@v3
2023-09-12 04:24:55 +00:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
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:
- uses: actions/checkout@v3
2022-01-28 20:27:16 +00:00
with:
2023-03-15 13:32:55 +00:00
ref: ${{ github.base_ref }}
- uses: actions/checkout@v3
2023-09-12 04:24:55 +00:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
with:
toolchain: nightly-2023-08-25
2023-03-15 13:32:55 +00:00
2023-09-12 04:24:55 +00:00
- uses: taiki-e/cache-cargo-install-action@v1.2.1
with:
tool: cargo-public-api
2023-03-15 13:32:55 +00: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