We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e432f8b commit f1a8f20Copy full SHA for f1a8f20
.github/workflows/cmake-multi-platform.yml
@@ -55,8 +55,10 @@ jobs:
55
- name: Build
56
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
57
58
+ - name: List full build directory
59
+ run: ls -R ${{ steps.strings.outputs.build-output-dir }}
60
+
61
- name: Run Google Tests
- working-directory: ${{ steps.strings.outputs.build-output-dir }}/test/unit-tests
62
+ # Use o caminho absoluto para o executável diretamente.
63
run: |
- # Execute the test binary (adjust if additional steps are needed)
- ./LibUnitTests
64
+ ${{ steps.strings.outputs.build-output-dir }}/test/unit-tests/LibUnitTests
0 commit comments