Skip to content

Commit

Permalink
devops: Add cargo check for all features + doc check
Browse files Browse the repository at this point in the history
  • Loading branch information
cvauclair committed Oct 17, 2024
1 parent 010c53d commit 6ddc3c7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:

- name: Run clippy action
uses: clechasseur/rs-clippy-check@v3
with:
args: --all-features

test:
name: stable / test
Expand All @@ -79,4 +81,19 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --all-features
args: run --all-features

doc:
name: stable / doc
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust stable
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rust-docs

- name: Run cargo doc
run: cargo doc --no-deps --all-features

0 comments on commit 6ddc3c7

Please sign in to comment.