Closed lwshang closed 6 months ago
cargo test --all-targets doesn't run the doc-tests. So I add an explicit command cargo test --doc.
cargo test --all-targets
cargo test --doc
It revealed that the doc-tests of ic-cdk-macros fail. To pass the macros doc-tests, I move the doc comments from ic-cdk-macros to ic-cdk.
I also noticed that there were some broken link in the docs. To prevent such issues in the future, I added a doc job in ci.yml.
doc
This PR also bumps syn and serde_tokenstream which had outdated major versions.
syn
serde_tokenstream
CI
Description
cargo test --all-targets
doesn't run the doc-tests. So I add an explicit commandcargo test --doc
.It revealed that the doc-tests of ic-cdk-macros fail. To pass the macros doc-tests, I move the doc comments from ic-cdk-macros to ic-cdk.
I also noticed that there were some broken link in the docs. To prevent such issues in the future, I added a
doc
job in ci.yml.This PR also bumps
syn
andserde_tokenstream
which had outdated major versions.How Has This Been Tested?
CI
Checklist: