Skip to content

Commit 70b7227

Browse files
committed
added inputs to the workflow dispatch
1 parent 0ad6de1 commit 70b7227

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@ on:
1212
required: true
1313
type: string
1414
workflow_dispatch:
15+
inputs:
16+
python-versions:
17+
description: 'List of Python versions to use in matrix, as JSON string'
18+
required: true
19+
type: string
20+
default: '["3.10", "3.11", "3.12", "3.13"]'
21+
os-versions:
22+
description: 'List of OS versions to use in matrix, as JSON string'
23+
required: true
24+
type: string
25+
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
1526

1627
jobs:
1728
run:

0 commit comments

Comments
 (0)