Skip to content

(ci-fix): testing patch for c++20 usage (clang) #630

(ci-fix): testing patch for c++20 usage (clang)

(ci-fix): testing patch for c++20 usage (clang) #630

Workflow file for this run

name: ci-macos
on:
push:
pull_request:
branches:
- main
jobs:
build-gcc:
strategy:
fail-fast: false
matrix:
os: [macos-latest]
build-type: [Release, Debug]
name: "Build: ${{matrix.os}} • ${{matrix.build-type}} • Apple Clang"
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Configure python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.14.1
with:
github-api-token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build-type}}
- name: Build C++ Project
run: cmake --build build --config ${{matrix.build-type}}
- name: Running C++ Tests
run: ctest --test-dir build/tests/cpp