chore: bump threeal/gcovr-action from 1.1.0 to 1.2.0 (#165) #46
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: Deploy | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy-pages: | |
| name: Deploy Pages | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| id-token: write | |
| pages: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deploy-pages.outputs.page_url }} | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v4.2.2 | |
| - name: Install Requirements | |
| run: | | |
| sudo apt-get install -y doxygen | |
| pip3 install -r docs/requirements.txt | |
| - name: Build Documentation | |
| run: sphinx-build -b html docs build/html -W --keep-going | |
| - name: Upload Artifact | |
| uses: actions/upload-pages-artifact@v4.0.0 | |
| with: | |
| path: build/html | |
| - name: Deploy Pages | |
| id: deploy-pages | |
| uses: actions/deploy-pages@v4.0.5 |