Skip to content

Commit 46bf084

Browse files
gmarullcarlescufi
authored andcommitted
ci: add job to check wifi docs build correctly
This makes sure WiFi docs are kept in good shape. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 51becbf commit 46bf084

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/wifi-doc-check.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: WiFi Documentation Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
branches:
7+
- master
8+
paths:
9+
- 'drivers/nrf_wifi/**'
10+
11+
env:
12+
DOXYGEN_VERSION: 1.12.0
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- name: Install Doxygen
19+
run: |
20+
wget --no-verbose "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz"
21+
sudo tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz -C /opt
22+
echo "/opt/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH
23+
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Build documentation
28+
working-directory: drivers/nrf_wifi
29+
run: doxygen

0 commit comments

Comments
 (0)