Skip to content

Commit d0b3fe4

Browse files
authored
Merge pull request #327 from wiktor-k/add-doc-intralink-check
Check for documentation link errors
2 parents 7bc7101 + 7aeaa24 commit d0b3fe4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
run: docker run -v $(pwd):/tmp/rust-tss-esapi -w /tmp/rust-tss-esapi/tss-esapi ubuntucontainer /tmp/rust-tss-esapi/tss-esapi/tests/all-ubuntu.sh
3838
- name: Run the cross-compilation script
3939
run: docker run -v $(pwd):/tmp/rust-tss-esapi -w /tmp/rust-tss-esapi/tss-esapi ubuntucontainer /tmp/rust-tss-esapi/tss-esapi/tests/cross-compile.sh
40+
- name: Check the documentation
41+
run: docker run -v $(pwd):/tmp/rust-tss-esapi -w /tmp/rust-tss-esapi/tss-esapi ubuntucontainer cargo doc
4042

4143
tests-ubuntu-v3:
4244
name: Ubuntu tests on v3.x.y of tpm2-tss

tss-esapi/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
unused_import_braces,
2727
unused_qualifications,
2828
unused_results,
29-
missing_copy_implementations
29+
missing_copy_implementations,
30+
rustdoc::broken_intra_doc_links,
3031
)]
3132
//! # TSS 2.0 Rust Wrapper over Enhanced System API
3233
//! This crate exposes the functionality of the TCG Software Stack Enhanced System API to

0 commit comments

Comments
 (0)