mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-27 14:04:56 +01:00
CI: Make it clear what has been linkchecked
This commit is contained in:
parent
4c2f550ee6
commit
073e41d03d
1 changed files with 16 additions and 0 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -344,15 +344,31 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
td=$(mktemp -d)
|
td=$(mktemp -d)
|
||||||
cp -r target/doc $td/api
|
cp -r target/doc $td/api
|
||||||
|
echo rtic
|
||||||
lychee --offline --format detailed $td/api/rtic/
|
lychee --offline --format detailed $td/api/rtic/
|
||||||
|
|
||||||
|
echo rtic_macros
|
||||||
lychee --offline --format detailed $td/api/rtic_macros/
|
lychee --offline --format detailed $td/api/rtic_macros/
|
||||||
|
|
||||||
|
echo rtic_arbiter
|
||||||
lychee --offline --format detailed $td/api/rtic_arbiter/
|
lychee --offline --format detailed $td/api/rtic_arbiter/
|
||||||
|
|
||||||
|
echo rtic_channel
|
||||||
lychee --offline --format detailed $td/api/rtic_channel/
|
lychee --offline --format detailed $td/api/rtic_channel/
|
||||||
|
|
||||||
|
echo rtic_common
|
||||||
lychee --offline --format detailed $td/api/rtic_common/
|
lychee --offline --format detailed $td/api/rtic_common/
|
||||||
|
|
||||||
|
echo rtic_macros
|
||||||
lychee --offline --format detailed $td/api/rtic_macros/
|
lychee --offline --format detailed $td/api/rtic_macros/
|
||||||
|
|
||||||
|
echo rtic_monotonics
|
||||||
lychee --offline --format detailed $td/api/rtic_monotonics/
|
lychee --offline --format detailed $td/api/rtic_monotonics/
|
||||||
|
|
||||||
|
echo rtic_time
|
||||||
lychee --offline --format detailed $td/api/rtic_time/
|
lychee --offline --format detailed $td/api/rtic_time/
|
||||||
|
|
||||||
|
|
||||||
- name: Archive the API docs
|
- name: Archive the API docs
|
||||||
run: |
|
run: |
|
||||||
cp -r target/doc apidocs
|
cp -r target/doc apidocs
|
||||||
|
|
Loading…
Reference in a new issue