Skip to content

Update project-build-ubuntu.yml #15

Update project-build-ubuntu.yml

Update project-build-ubuntu.yml #15

name: Build & Test (macos)
on:
push:
branches-ignore:
- 'main'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- 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