Skip to content

Commit

Permalink
Update CI.yml test job
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliom authored Jul 23, 2024
1 parent 22be3d1 commit 93487c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Test
working-directory: ${{github.workspace}}/BasicRenderer/build
working-directory: ${{github.workspace}}/BasicRenderer
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{env.BUILD_TYPE}}
run: |
cd build
ctest -C ${{env.BUILD_TYPE}}

0 comments on commit 93487c5

Please sign in to comment.