diff --git a/.github/workflows/runTests.yml b/.github/workflows/runTests.yml index e528136..92ee5ec 100644 --- a/.github/workflows/runTests.yml +++ b/.github/workflows/runTests.yml @@ -1,8 +1,12 @@ on: pull_request: types: [opened, reopened] - + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 workflow_dispatch: + name: Run unit tests jobs: build_test: @@ -22,7 +26,7 @@ jobs: - name: Build # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build -j 10 + run: cmake --build ${{github.workspace}}/build -j 10 --verbose - name: Test run: ctest --test-dir ${{github.workspace}}/build --output-on-failure --verbose