We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c49db commit 032b765Copy full SHA for 032b765
.github/workflows/docs.yml
@@ -5,18 +5,19 @@ name: Documentation
5
6
on: [push, pull_request]
7
8
-env:
9
- DOXYGEN_VERSION: 1.9.6
10
-
11
jobs:
12
build:
13
runs-on: ubuntu-22.04
+ strategy:
+ matrix:
+ doxygen-version: [1.9.6, 1.14.0]
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
17
18
- name: Install dependencies
19
run: |
20
+ DOXYGEN_VERSION="${{ matrix.doxygen-version }}"
21
wget --no-verbose "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz"
22
tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz
23
echo "${PWD}/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH
0 commit comments