Skip to content

⬆️🪝 update pre-commit hooks (#287) #953

⬆️🪝 update pre-commit hooks (#287)

⬆️🪝 update pre-commit hooks (#287) #953

Workflow file for this run

name: C++
on:
pull_request:
merge_group:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CMAKE_BUILD_PARALLEL_LEVEL: 3
CTEST_PARALLEL_LEVEL: 3
defaults:
run:
shell: bash
jobs:
cpp-tests:
name: Tests ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- { os: ubuntu-latest, toolchain: "" }
- { os: macos-latest, toolchain: "" }
- { os: windows-latest, toolchain: "-T ClangCl" }
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_QCEC_TESTS=ON ${{ matrix.config.toolchain }}
- name: Build
run: cmake --build build --config Release
- name: Test
run: ctest -C Release --output-on-failure --test-dir build --repeat until-pass:3 --timeout 300
- if: runner.os == 'Linux'
name: Coverage
run: |
cmake -S . -B buildCov -DCMAKE_BUILD_TYPE=Debug -DBUILD_QCEC_TESTS=ON -DENABLE_COVERAGE=ON
cmake --build buildCov --config Debug --target qcec_test
ctest -C Debug --output-on-failure --test-dir buildCov --repeat until-pass:3 --timeout 300
- if: runner.os == 'Linux'
name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
with:
fail_ci_if_error: true
flags: cpp
gcov: true
gcov_ignore: "extern/**/*"
token: ${{ secrets.CODECOV_TOKEN }}