Update minimum CMake version and MacOS architectures #34
Workflow file for this run
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
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/[email protected] | |
with: | |
cmake-version: '3.26' | |
- name: Configure CMake | |
run: cmake . | |
- name: Build Project | |
run: cmake --build . --config debug | |
- name: Run Tests | |
run: ctest |