There was an error while loading. Please reload this page.
1 parent 7d287f5 commit fd3809bCopy full SHA for fd3809b
1 file changed
.github/workflows/pytest.yml
@@ -6,6 +6,12 @@ on:
6
pull_request:
7
branches: [main]
8
workflow_dispatch:
9
+ inputs:
10
+ debug_enabled:
11
+ type: boolean
12
+ description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)"
13
+ required: false
14
+ default: false
15
16
concurrency:
17
group: ${{ github.workflow }}-${{ github.ref }}
@@ -16,3 +22,4 @@ jobs:
22
uses: Komorebi-AI/github-actions/.github/workflows/pytest-uv.yml@main
23
with:
18
24
uv-version: 0.8.0
25
+ debug-enabled: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
0 commit comments