add generated doxygen docs #92
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: Valgrind | |
on: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y valgrind | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER="gcc" | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build | |
- name: Run Valgrind | |
run: | | |
valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 ./build/fsautoproc -h | |
mkdir empty && valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 ./build/fsautoproc -c example.fsautoproc.json -s empty |