mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +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,14 +344,30 @@ jobs:
|
|||
run: |
|
||||
td=$(mktemp -d)
|
||||
cp -r target/doc $td/api
|
||||
echo rtic
|
||||
lychee --offline --format detailed $td/api/rtic/
|
||||
|
||||
echo rtic_macros
|
||||
lychee --offline --format detailed $td/api/rtic_macros/
|
||||
|
||||
echo rtic_arbiter
|
||||
lychee --offline --format detailed $td/api/rtic_arbiter/
|
||||
|
||||
echo rtic_channel
|
||||
lychee --offline --format detailed $td/api/rtic_channel/
|
||||
|
||||
echo rtic_common
|
||||
lychee --offline --format detailed $td/api/rtic_common/
|
||||
|
||||
echo rtic_macros
|
||||
lychee --offline --format detailed $td/api/rtic_macros/
|
||||
|
||||
echo rtic_monotonics
|
||||
lychee --offline --format detailed $td/api/rtic_monotonics/
|
||||
|
||||
echo rtic_time
|
||||
lychee --offline --format detailed $td/api/rtic_time/
|
||||
|
||||
|
||||
- name: Archive the API docs
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue