CI on refs/heads/main on 64b7926caa4f50484463b6e6d4714e8bdf8a4cac #12
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: CI | |
run-name: CI on ${{ github.ref }} on ${{ github.sha }} | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Build-And-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- run: mkdir build | |
- run: cd build | |
- name: Run Cmake Config step | |
run: cmake ../ray-tracing | |
- name: Run build | |
run: cmake --build . --parallel 2 | |
- name: Run test | |
run: ./tools/test/tests |