using macOS 13 and 14 for CI build #13
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: 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 | |