From 7622da99535c1617afb373685dff000bd2cf4f4a Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Sat, 18 Jul 2026 10:02:47 +0200 Subject: [PATCH] Add a workflow to trigger the system tests --- .github/workflows/run-system-tests.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/run-system-tests.yml diff --git a/.github/workflows/run-system-tests.yml b/.github/workflows/run-system-tests.yml new file mode 100644 index 00000000..f7792194 --- /dev/null +++ b/.github/workflows/run-system-tests.yml @@ -0,0 +1,13 @@ +name: System tests + +on: + pull_request: + types: [labeled] + +jobs: + run-system-tests: + if: ${{ github.event.label.name == 'trigger-system-tests' }} + uses: precice/tutorials/.github/workflows/system-tests.yml@develop + with: + suites: python-bindings + build_args: PYTHON_BINDINGS_PR:${{ github.event.number }},PYTHON_BINDINGS_REF:${{ github.event.pull_request.head.sha }}