File: doxygen.yml

package info (click to toggle)
quantlib 1.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 41,768 kB
  • sloc: cpp: 398,987; makefile: 6,574; python: 214; sh: 150; lisp: 86
file content (32 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
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
name: Check doc generation
on:
  push:
    branches:
      - '**'
  pull_request:
jobs:
  docs:
    runs-on: macos-latest
    steps:
    - uses: actions/checkout@v5
    - name: Setup
      env:
        HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
      run: |
        brew install automake autoconf libtool boost doxygen graphviz
        ./autogen.sh
        ./configure --with-boost-include=$(brew --prefix)/include
    - name: Doxygen version
      run: |
        doxygen --version
    - name: Check
      run: |
        make docs

  header-docs:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v5
    - name: Check
      run: |
        ./tools/check_all_header_docs.sh