Skip to content

Merge pull request #446 from jacobkahn/fix_false_positive_compression… #108

Merge pull request #446 from jacobkahn/fix_false_positive_compression…

Merge pull request #446 from jacobkahn/fix_false_positive_compression… #108

Workflow file for this run

name: Mac
on:
push:
branches: master
pull_request:
branches: master
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Install Boost
run: |
brew install boost
brew install libomp
brew install eigen
- name: cmake
run: |
cmake -E make_directory build
cd build
cmake ..
- name: Compile
working-directory: build
run: cmake --build . -j2
- name: Test
working-directory: build
run: ctest -j2