Skip to content

Commit

Permalink
Add doxygen documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
eliogovea committed Mar 9, 2024
1 parent 0d7df30 commit ae9690a
Show file tree
Hide file tree
Showing 7 changed files with 2,734 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake
name: coverage

on:
push:
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Deploy coverage report
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: coverage
target-folder: coverage/${{ github.ref_name }}
branch: gh-pages
target-folder: ${{ github.ref_name }}/coverage
folder: build/make-gcc-debug-coverage/lcov
clean: true
31 changes: 31 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: documentation

on:
push:
branches: ["master", "dev"]

env:
BRANCH_NAME: ${{ github.ref_name }}

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt install doxygen

- name: Generate documentation
run: |
mkdir build
doxygen Doxyfile
- name: Deploy documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
target-folder: ${{ github.ref_name }}/documentation
folder: build/documentation/html/
clean: true
Loading

0 comments on commit ae9690a

Please sign in to comment.