2021-02-07 21:33:53 +01:00
|
|
|
name: Lint
|
|
|
|
|
2020-07-22 01:28:33 +02:00
|
|
|
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
|
|
|
|
|
2020-07-22 01:28:33 +02:00
|
|
|
jobs:
|
2021-02-07 21:33:53 +01:00
|
|
|
fmt:
|
2020-07-22 01:28:33 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-12 06:44:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-15 14:32:55 +01:00
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Install Rust (nightly)
|
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
|
2023-03-15 14:32:55 +01:00
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
components: rustfmt
|
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Check with Rustfmt
|
2023-11-10 15:06:35 +01:00
|
|
|
run: cargo fmt --all -- --check
|
2020-07-22 01:28:33 +02:00
|
|
|
|
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:
|
2023-09-12 06:44:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-07 21:33:53 +01:00
|
|
|
|
2023-11-10 15:06:35 +01:00
|
|
|
- name: Install Rust
|
2024-01-15 02:24:21 +01:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.8.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
|
2020-07-22 01:28:33 +02:00
|
|
|
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:
|
2023-09-12 06:44:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-25 18:00:59 +01:00
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Install Rust (nightly)
|
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
|
2023-09-12 06:24:55 +02:00
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
components: rust-docs
|
2022-11-25 18:00:59 +01:00
|
|
|
|
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:
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Checkout main branch
|
|
|
|
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 }}
|
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Checkout PR branch
|
|
|
|
uses: actions/checkout@v4
|
2023-03-15 14:32:55 +01:00
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
|
2023-09-12 06:24:55 +02:00
|
|
|
with:
|
|
|
|
toolchain: nightly-2023-08-25
|
2023-03-15 14:32:55 +01:00
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Install cargo-public-api
|
|
|
|
uses: taiki-e/install-action@v2.24.1
|
2023-09-12 06:24:55 +02:00
|
|
|
with:
|
|
|
|
tool: cargo-public-api
|
2023-03-15 14:32:55 +01:00
|
|
|
|
2024-01-22 03:19:19 +01:00
|
|
|
- name: Generate API diff
|
2023-03-15 14:32:55 +01: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
|