Skip to content

Manual Tests

Manual Tests #5

Workflow file for this run

---
name: "Manual Tests"
on: # yamllint disable
workflow_dispatch:
inputs:
full-integration:
description: "Run full integration tests"
required: true
default: false
type: boolean
jobs:
tests:
uses: ./.github/workflows/tests.yml
with:
full-integration: "${{ inputs.full-integration }}"