Merge pull request #21 from cschreib/snitch #40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doc | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: sudo apt-get install doxygen | |
- name: Build C++ documentation | |
working-directory: ${{github.workspace}}/doc | |
shell: bash | |
run: doxygen dox.conf | |
- name: Upload as an Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: ${{github.workspace}}/doc/html |