File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 67
67
cd $GITHUB_WORKSPACE
68
68
python ci/build_and_run_tests.py
69
69
shell : bash
70
+ # Detect cases where documentation links don't resolve and such.
71
+ doc :
72
+ name : Docs
73
+ runs-on : ubuntu-latest
74
+ steps :
75
+ - uses : actions/checkout@v2
76
+ with :
77
+ submodules : ' recursive'
78
+ - uses : actions-rs/toolchain@v1
79
+ with :
80
+ profile : minimal
81
+ # Docs.rs uses nightly, which allows for easier syntax for linking to functions.
82
+ toolchain : nightly
83
+ override : true
84
+ - uses : actions-rs/cargo@v1
85
+ with :
86
+ # Need to use `cargo rustdoc` to actually get it to respect -D
87
+ # warnings... Note: this also requires nightly.
88
+ command : rustdoc
89
+ args : -p couchbase-lite -- -D warnings
90
+ - uses : actions-rs/cargo@v1
91
+ with :
92
+ command : rustdoc
93
+ args : -p couchbase-lite-core-sys -- -D warnings
You can’t perform that action at this time.
0 commit comments