[PID + Build] Enable -Wconversion and refactor PID APi #54
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: Generate Documentation | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
generate-documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt install doxygen python3 | |
- run: python3 scripts/generate_documentation.py | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: html-output | |
path: html/ |