From 924e1440298d0be13f43486e1389b5362bc53926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Dai=C3=9F?= Date: Sat, 1 Jun 2024 20:34:18 +0200 Subject: [PATCH 1/2] Add more triggers for github actions tests --- .github/workflows/cmake.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index a6fd9f4f..d328b002 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -1,6 +1,11 @@ name: ctest -on: [push] +on: + push: + pull request: # build on PRs -- asks maintainers for approval before running on external PRs + branches: + - master + workflow_dispatch: # add manual trigger for the workflow #env: # BUILD_TYPE: Release From 01da04232325357d072335255a890bd51027279b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Dai=C3=9F?= Date: Sat, 1 Jun 2024 20:37:17 +0200 Subject: [PATCH 2/2] Fix typo.. --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index d328b002..20c15d89 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -2,7 +2,7 @@ name: ctest on: push: - pull request: # build on PRs -- asks maintainers for approval before running on external PRs + pull_request: # build on PRs -- asks maintainers for approval before running on external PRs branches: - master workflow_dispatch: # add manual trigger for the workflow