Skip to content

Testing

Testing #27

Workflow file for this run

name: Testing CI
on:
push:
branches:
- main
- testing
pull_request:
branches:
- main
- testing
jobs:
build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install gtest
run: brew install googletest
- name: Configure
run: |
mkdir build
cd build
cmake -DBUILD_SAMPLE=OFF -DBUILD_TESTS=ON ..
- name: Compile
run: |
cd build
cmake --build .
- name: Test
run: |
cd build
./test/test_all