commit to fail #181
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: MacOS CI Test | |
on: | |
push: | |
branches: [ main, master, dev ] | |
pull_request: | |
branches: [ main, master, dev ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: prepare | |
run: | | |
make prepare | |
- name: configure | |
run: | | |
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE="Debug" | |
- name: building and testing | |
run: | | |
cmake --build build --config Debug | |
cd build | |
ctest . |