Merge pull request #12 from mulaga/main #188
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mac OSX CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: make test | |
run: | | |
cmake -S . -B build -D BUILD_TESTING=On | |
cmake --build build | |
- name: run tests | |
run: | | |
./build/tests/tests |