Included the <numeric> header which is required by MSVC #142
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: Run unit tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
checkout-and-ctest-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- run: brew install llvm libomp | |
- run: | | |
export CC=/usr/local/opt/llvm/bin/clang | |
export CXX=/usr/local/opt/llvm/bin/clang++ | |
cmake . | |
- run: cmake --build . | |
- run: ctest | |
checkout-and-ctest-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- run: sudo apt install libtbb2-dev | |
- run: cmake -DTBB_DIR=/usr/lib/x86_64-linux-gnu/cmake/TBB . | |
- run: cmake --build . | |
- run: ctest | |
checkout-and-ctest-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- run: cmake . | |
- run: cmake --build . --config Release | |
- run: ctest -C Release |