Update doxygen #38
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: Ubuntu | |
on: | |
push: | |
branches: | |
- wip/refactoring # Trigger on push | |
pull_request: | |
branches: | |
- wip/refactoring # Trigger on pull | |
jobs: | |
build: | |
runs-on: ubuntu-latest # Use Ubuntu environment for the build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 # Checkout the repository code | |
- name: Configure CMake | |
run: cmake -S . -B build # Configure CMake to generate build files in 'build' directory | |
- name: Build | |
run: cmake --build build # Build the project using CMake | |
- name: Run DelegateApp | |
run: ./build/DelegateApp # Run the built executable |