Skip to content

Add intel-based mac runner to mac CI. #48

Add intel-based mac runner to mac CI.

Add intel-based mac runner to mac CI. #48

Workflow file for this run

---
name: MacOS
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [macos-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: configure
run: cmake -S . -B build
- name: build and test
run: cmake --build build