build: install doxygen in ci

This commit is contained in:
Carlos Gomes Martinho 2020-03-23 13:54:57 +01:00 committed by Carlos Gomes Martinho
parent 5a3d13e7ad
commit 6fb724698f

View File

@ -23,6 +23,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build doxygen documentation
run: sudo apt install -y doxygen
- name: build doxygen documentation
run: rm -rf build || true && mkdir build && cd build && cmake .. -DLIBMBUS_BUILD_DOCS=ON && cmake --build . --target doc