2021-02-07 20:33:53 +00:00
|
|
|
name: Lint
|
|
|
|
|
2020-07-21 23:28:33 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
|
2023-03-15 13:32:55 +00:00
|
|
|
permissions:
|
|
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-21 23:28:33 +00:00
|
|
|
jobs:
|
2021-02-07 20:33:53 +00:00
|
|
|
fmt:
|
2020-07-21 23:28:33 +00:00
|
|
|
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
|
|
|
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
components: rustfmt
|
|
|
|
|
2022-11-25 17:00:59 +00:00
|
|
|
- run: cargo fmt --all -- --check
|
2020-07-21 23:28:33 +00:00
|
|
|
|
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-03-15 13:32:55 +00:00
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
2022-11-25 17:00:59 +00:00
|
|
|
with: { components: clippy }
|
2022-01-03 18:46:04 +00:00
|
|
|
|
|
|
|
- name: Generate Cargo.lock
|
2022-11-25 17:00:59 +00:00
|
|
|
run: cargo generate-lockfile
|
2022-01-03 18:46:04 +00:00
|
|
|
- name: Cache Dependencies
|
|
|
|
uses: Swatinem/rust-cache@v1.2.0
|
2023-03-15 13:32:55 +00:00
|
|
|
|
2020-07-21 23:28:33 +00:00
|
|
|
- name: Check with Clippy
|
|
|
|
uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
2022-01-03 18:46:04 +00:00
|
|
|
args: --workspace --tests --examples --all-features
|
2022-11-25 17:00:59 +00:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
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
|
2022-11-25 17:00:59 +00:00
|
|
|
|
2023-03-15 13:32:55 +00:00
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
2022-11-25 17:00:59 +00:00
|
|
|
with: { components: rust-docs }
|
|
|
|
|
2022-01-28 20:27:16 +00:00
|
|
|
- name: Check for broken intra-doc links
|
2023-03-15 13:32:55 +00:00
|
|
|
env: { RUSTDOCFLAGS: "-D warnings" }
|
|
|
|
run: cargo doc --no-deps --all-features --workspace
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
with: { toolchain: nightly }
|
|
|
|
|
|
|
|
- uses: taiki-e/cache-cargo-install-action@v1
|
|
|
|
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" diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }}
|
|
|
|
done
|