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 51becbf commit 46bf084Copy full SHA for 46bf084
.github/workflows/wifi-doc-check.yml
@@ -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