marinone94's picture
Training in progress, epoch 0
1ce325b
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