From 3e776c4e3678dcc03d77c9423c5f014dd04510f0 Mon Sep 17 00:00:00 2001 From: Yun Wang Date: Fri, 16 Jan 2026 10:06:00 +0100 Subject: [PATCH] ci: add dispatchable test workflow --- .github/workflows/integration.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 00000000..afae277a --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,17 @@ +name: Integration Tests + +on: + workflow_dispatch: + inputs: + marker: + description: 'Test marker filter (e.g., "integration" or "")' + required: false + default: 'integration' + type: string + +jobs: + integration: + uses: ./.github/workflows/run_tests.yml + with: + marker: ${{ inputs.marker }} + secrets: inherit