-
-
Notifications
You must be signed in to change notification settings - Fork 264
47 lines (39 loc) · 1.06 KB
/
linkchecker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: linkchecker
on:
workflow_dispatch:
push:
pull_request:
branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: get
uses: actions/checkout@v4
- name: install
run: |
sudo apt update -y
sudo apt install -y libunwind-dev
sudo apt install -y graphviz
sudo apt install -y --no-install-recommends doxygen
sudo apt install -y cmake
sudo apt install -y texlive-full
sudo apt install -y texlive-fonts-extra
sudo apt install -y texlive-latex-extra
pip3 install linkchecker
- name: build
run: |
mkdir build
cd build
cmake -DHDF5_BUILD_DOC:BOOL=ON ..
make doxygen
- name: check
run: |
cd build/hdf5lib_docs/html
linkchecker --check-extern ./index.html
continue-on-error: true