Simplify RPATH settings (#192) #1574
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: Documentation | |
on: [pull_request, push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
doxygen: | |
name: "Doxygen" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create build directory | |
run: mkdir build | |
- name: Run Doxygen | |
uses: mattnotmitt/[email protected] | |
with: | |
doxyfile-path: 'docs/Doxyfile' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: documentation | |
path: build/docs |