diff --git a/.github/workflows/build-linux-cxx.yml b/.github/workflows/build-linux-cxx.yml index e25ede6..36d6e22 100644 --- a/.github/workflows/build-linux-cxx.yml +++ b/.github/workflows/build-linux-cxx.yml @@ -43,4 +43,7 @@ jobs: # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE - \ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + run: ctest -V \ No newline at end of file diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 91c6deb..abe5748 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -43,4 +43,7 @@ jobs: # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE - \ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + run: ctest -V \ No newline at end of file diff --git a/.github/workflows/build-osx-cxx.yml b/.github/workflows/build-osx-cxx.yml index 0d53876..f6869e6 100644 --- a/.github/workflows/build-osx-cxx.yml +++ b/.github/workflows/build-osx-cxx.yml @@ -43,4 +43,7 @@ jobs: # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE - \ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + run: ctest -V \ No newline at end of file diff --git a/.github/workflows/build-osx.yml b/.github/workflows/build-osx.yml index a507dcb..85d5a92 100644 --- a/.github/workflows/build-osx.yml +++ b/.github/workflows/build-osx.yml @@ -43,4 +43,7 @@ jobs: # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE - \ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + run: ctest -V \ No newline at end of file diff --git a/.github/workflows/build-windows-cxx.yml b/.github/workflows/build-windows-cxx.yml index 9c2cecf..34eb4b2 100644 --- a/.github/workflows/build-windows-cxx.yml +++ b/.github/workflows/build-windows-cxx.yml @@ -43,4 +43,7 @@ jobs: # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE - \ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + run: ctest -V -C $BUILD_TYPE \ No newline at end of file diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 45681ea..c16da98 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -43,4 +43,7 @@ jobs: # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE - \ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + run: ctest -V -C $BUILD_TYPE \ No newline at end of file