Some checks failed
Generate Documentation / build (push) Failing after 10s
22 lines
357 B
YAML
22 lines
357 B
YAML
name: Generate Documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- development
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: mattnotmitt/doxygen-action@v1.9.5
|
|
with:
|
|
working-directory: './'
|
|
doxyfile-path: 'docs/Doxygen'
|
|
- name: Build Doxygen docs
|
|
run: doxygen
|