Merge pull request #110 from rahil-makadia/dev #374
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| paths: | |
| - '.github/workflows/cpp_tests.yml' | |
| - 'include/**' | |
| - 'src/**' | |
| - 'tests/cpp/**' | |
| - 'grss/version.txt' | |
| jobs: | |
| prop-only: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Build GRSS library | |
| run: | | |
| source initialize.sh | |
| source build_cpp.sh -clean | |
| - name: Run tests | |
| run: | | |
| cd tests/cpp/prop | |
| ./pck_map.out | |
| ./spk_map.out | |
| ./apophis.out | |
| ./didymos.out |