1.0-rc2 (#6) #78
Workflow file for this run
This file contains 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: API documentation | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'include/**' | |
- 'css/**' | |
- 'Doxyfile' | |
- '*.md' | |
- '.github/workflows/dox.yml' | |
jobs: | |
apidocs: | |
name: Generate API documentation | |
runs-on: ubuntu-latest | |
env: | |
CC: gcc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: sudo apt-get install -y doxygen | |
- name: About this workflow... | |
run: | | |
echo github.event_name = ${{ github.event_name }} | |
echo github.repository_owner = ${{ github.repository_owner }} | |
echo github.ref_name = ${{ github.ref_name }} | |
- name: Run doxygen | |
run: make dox | |