Manual Test Run #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual Test Run | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
SPEC_NAMES: | ||
description: "Spec names of running tests. If there are no names - runs all tests" | ||
required: false | ||
SPECS_TYPE: | ||
type: choice | ||
description: "Specs type to run exact type of tests. If there is no type - runs for all types" | ||
default: all | ||
options: | ||
- all | ||
- web | ||
- api | ||
jobs: | ||
test: | ||
name: "Manual Test Run" | ||
uses: ./.github/workflows/common-job.yml | ||
Check failure on line 21 in .github/workflows/manual.yml
|
||
with: | ||
SPEC_NAMES: ${{ github.event.inputs.SPEC_NAMES }} | ||
SPECS_TYPE: ${{ github.event.inputs.SPECS_TYPE }} | ||
REPORT_FLAG: ${{ 'always' }} | ||
secrets: | ||
SEED_PHRASE: ${{ secrets.SEED_PHRASE }} |