Skip to content

Commit e84db47

Browse files
Merge branch 'main' into delete_lables_workflow
2 parents 7027001 + d2f6127 commit e84db47

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Custom dispatch tests
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
pytest_markexpr:
7+
description: 'Expression for pytest -m'
8+
required: false
9+
default: 'not remote'
10+
type: string
11+
os:
12+
description: 'OS to test on'
13+
required: true
14+
default: 'ubuntu-latest'
15+
type: choice
16+
options: ["ubuntu-latest", "windows-latest", "windows-2022", "macos-latest", "macos-15-intel"]
17+
python:
18+
description: 'Python version'
19+
required: true
20+
default: '3.13'
21+
type: choice
22+
options: ['3.10', '3.11', '3.12', '3.13']
23+
tmate:
24+
description: 'Enable tmate debugging session'
25+
required: false
26+
default: false
27+
type: boolean

0 commit comments

Comments
 (0)