Skip to content

Update project-build-mac.yml #6

Update project-build-mac.yml

Update project-build-mac.yml #6

name: Build & Test (macos)
on:
push:
branches-ignore:
- 'main'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: install pre-reqs
run: brew install cmake
- name: build step
run: mkdir build; cd build; cmake -DBUILD_PYTHON_INTERFACE=OFF ..; make;
- name: run tests
run: sh test.sh