We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e89d94 commit 72e92deCopy full SHA for 72e92de
.github/workflows/ci.yml
@@ -25,7 +25,16 @@ jobs:
25
# checkout source code
26
- uses: actions/checkout@v2
27
28
- # compile sipnet
+ # install doxygen
29
+ - name: Install Doxygen
30
+ run: |
31
+ if [[ "$RUNNER_OS" == "Linux" ]]; then
32
+ sudo apt-get install doxygen -y
33
+ elif [[ "$RUNNER_OS" == "macOS" ]]; then
34
+ brew install doxygen
35
+ fi
36
+
37
+ # compile SIPNET
38
- name: compile sipnet
39
run: make
40
0 commit comments