Merge pull request #20 from sbaldu/bugfix_input_plotter #9
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++ tests | |
# The workflow gets triggered by pushes and pull requests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
# Checks out the code in the repository | |
- uses: actions/checkout@v3 | |
- name: Install doctest | |
run: | | |
sudo apt-get install -y doctest | |
# Sets up Python on the machine with the right version | |
- name: Compile and run the C++ tests | |
working-directory: ${{github.workspace}}/CLUEstering/include/test | |
run: | | |
make && ./run_tests.sh | |