Skip to content

Commit 9c81c66

Browse files
authored
[5] configurable timeout (#6)
1 parent 6b16e2e commit 9c81c66

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python-run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ on:
2828
required: false
2929
type: boolean
3030
default: true
31+
timeout-minutes:
32+
description: Maximum runtime in minutes
33+
required: false
34+
type: number
35+
default: 10
3136
poetry-version:
3237
description: The poetry version to use
3338
required: false
@@ -47,7 +52,7 @@ on:
4752

4853
jobs:
4954
run_unit_tests:
50-
timeout-minutes: 10
55+
timeout-minutes: ${{ inputs.timeout-minutes }}
5156

5257
strategy:
5358
fail-fast: ${{ inputs.fail-fast}}

0 commit comments

Comments
 (0)