Added ThreadUtils from the NovacPPP. Removed some debug info #77
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: C/C++ [Ubuntu] | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run CMake to Create Project Files | |
run: cmake -G "Unix Makefiles" . | |
- name: Build | |
run: make | |
- name: List Files | |
run: ls bin/ | |
- name: Run Tests | |
run: cd ./bin/Release; ./SpectralEvaluationTests | |