Antithesis Manual Run #31
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: Antithesis Manual Run | |
on: | |
workflow_dispatch: | |
inputs: | |
backend: | |
description: 'The backend storage type to use' | |
type: choice | |
required: true | |
default: 'mongo' | |
options: | |
- scylla | |
- mongo | |
test-type: | |
description: 'Which test variant to run' | |
type: choice | |
required: true | |
default: 'regression' | |
options: | |
- async | |
- regression | |
test-duration: | |
description: 'The duration that the antithesis test runs (hours)' | |
type: string | |
required: false | |
default: '0.5' | |
jobs: | |
build: | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: write # This is required for actions/checkout (read) and publishing tags (write) | |
uses: ./.github/workflows/github-e2e.yaml | |
with: | |
backend: ${{ inputs.backend }} | |
test-type: ${{ inputs.test-type }} | |
test-duration: ${{ inputs.test-duration }} | |
secrets: inherit |