Skip to content

Commit 08da898

Browse files
feat(ci): add documentation warnings check in CI
Added a documentation warnings check to the Build and Test CI job.
1 parent b4bc979 commit 08da898

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ jobs:
7272
- name: Check formatting
7373
run: cargo fmt -- --check
7474

75+
- name: Check documentation
76+
env:
77+
RUSTDOCFLAGS: "-D warnings"
78+
run: cargo doc --no-deps --all-features --document-private-items
79+
7580
- name: Install llvm-tools for coverage
7681
run: rustup component add llvm-tools-preview
7782

0 commit comments

Comments
 (0)