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]
|
|
|
|
|
|
|
|
jobs:
|
2021-02-07 20:33:53 +00:00
|
|
|
fmt:
|
2020-07-21 23:28:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-11-25 17:00:59 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
2022-11-25 21:44:52 +00:00
|
|
|
with: { 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:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2022-11-25 17:00:59 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
|
|
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
|
2022-11-25 17:00:59 +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:
|
|
|
|
- uses: actions/checkout@v2
|
2022-11-25 17:00:59 +00:00
|
|
|
|
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
|
|
with: { components: rust-docs }
|
|
|
|
|
2022-01-28 20:27:16 +00:00
|
|
|
- name: Check for broken intra-doc links
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
env:
|
|
|
|
RUSTDOCFLAGS: "-D warnings"
|
|
|
|
with:
|
|
|
|
command: doc
|
|
|
|
args: --no-deps --all-features --workspace
|