Skip to content

Update minimum CMake version and MacOS architectures #34

Update minimum CMake version and MacOS architectures

Update minimum CMake version and MacOS architectures #34

Workflow file for this run

on:
pull_request:
branches: [master]
jobs:
run-tests:
name: Run Tests - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos arm64, macos x86_64, and windows
os: [macos-latest, macos-latest-large, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install CMake
uses: jwlawson/actions-setup-cmake@v1.13.1
with:
cmake-version: '3.26'
- name: Configure CMake
run: cmake .
- name: Build Project
run: cmake --build . --config debug
- name: Run Tests
run: ctest