We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 009912c commit 8b524a9Copy full SHA for 8b524a9
.github/workflows/unittests.yml
@@ -30,4 +30,8 @@ jobs:
30
- name: Run Tests
31
working-directory: build/
32
# --output-on-failure prints the error log if a test fails
33
- run: ctest --output-on-failure
+ run: |
34
+ # First generate golden images
35
+ ./tests/rg_tests --generate
36
+ # Then run the actual tests
37
+ ctest --output-on-failure
0 commit comments