Skip to content

using macOS 13 and 14 for CI build #13

using macOS 13 and 14 for CI build

using macOS 13 and 14 for CI build #13

name: Run Tests (macOS)
on:
push
jobs:
run_tests:
strategy:
matrix:
os: [macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Configure CMake Project
working-directory: ${{github.workspace}}
run: cmake -DCMAKE_BUILD_TYPE=Debug -B build -G "Unix Makefiles" .
- name: Run tests
working-directory: ${{github.workspace}}/build
run: cmake --build . --target run-tests -- -j 6