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