ci: Run cargo doc and clippy with default features, all features and no features

This commit is contained in:
Chris Hennick 2024-05-03 11:32:07 -07:00
parent 103f1eccc4
commit 8e0f4ace34
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -52,13 +52,12 @@ jobs:
command: test
args: --all ${{ matrix.feature_flag }}
style_and_docs:
cargo_fmt:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
@ -67,18 +66,30 @@ jobs:
components: rustfmt, clippy
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- name: Docs
run: cargo doc --no-deps
style_and_docs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
matrix:
feature_flag: ["--all-features", "--no-default-features", ""]
runs-on: ubuntu-latest
steps:
- name: clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets ${{ matrix.feature_flag }} -- -D warnings
- name: docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps --all-targets ${{ matrix.feature_flag }} -- -D warnings
fuzz_read:
runs-on: ubuntu-latest
needs:
- build_and_test
- cargo_fmt
- style_and_docs
steps:
- uses: actions/checkout@v4
@ -126,6 +137,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- build_and_test
- cargo_fmt
- style_and_docs
steps:
- uses: actions/checkout@v4
@ -173,6 +185,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- build_and_test
- cargo_fmt
- style_and_docs
steps:
- uses: actions/checkout@v4
@ -220,6 +233,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- build_and_test
- cargo_fmt
- style_and_docs
steps:
- uses: actions/checkout@v4