build(deps): bump mattnotmitt/doxygen-action from 452281fb0f5f8a3e8d3f7fa5359cb58f249dfa28 to e0c8cd4cd05e28b88e723b25b30188ecf2505b40 #658
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: Ubuntu 22.04 (Release build) | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu-release-build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
cxx: [g++-12, clang++-14] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.6.0 | |
- name: Setup Ninja | |
run: sudo apt-get install ninja-build | |
- name: Prepare | |
run: cmake -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release -G Ninja -B build | |
env: | |
CXX: ${{matrix.cxx}} | |
- name: Build | |
run: cmake --build build -j=2 | |
- name: Test | |
run: ctest --output-on-failure --test-dir build |