1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00
actix-web/.github/workflows/clippy-fmt.yml

50 lines
1.2 KiB
YAML
Raw Normal View History

2021-02-07 21:33:53 +01:00
name: Lint
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
2021-02-07 21:33:53 +01:00
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
2022-11-25 22:44:52 +01:00
with: { components: rustfmt }
- run: cargo fmt --all -- --check
2021-02-07 21:33:53 +01:00
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with: { components: clippy }
2022-01-03 19:46:04 +01:00
- name: Generate Cargo.lock
run: cargo generate-lockfile
2022-01-03 19:46:04 +01:00
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.2.0
- name: Check with Clippy
uses: actions-rs/clippy-check@v1
with:
2022-01-03 19:46:04 +01:00
args: --workspace --tests --examples --all-features
token: ${{ secrets.GITHUB_TOKEN }}
2022-01-28 21:27:16 +01:00
lint-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with: { components: rust-docs }
2022-01-28 21:27:16 +01: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