Merge pull request #405 from JamesMcClung/pr/prune-mrc #599
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: PSC CI | |
| on: | |
| push: | |
| branches: [ main, 'pr/*' ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| tests-cpu: | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/psc-code/psc-cpp-ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: cmake | |
| run: cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -G Ninja | |
| - name: build | |
| run: cmake --build build | |
| - name: test | |
| run: cmake --build build -t test |