Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ concurrency:

jobs:
lint:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -32,6 +33,7 @@ jobs:
run: uv run pre-commit run --all-files --show-diff-on-failure

prepare-matrix:
timeout-minutes: 5
runs-on: ubuntu-latest
outputs:
matrix-unit: ${{ steps.set-matrix-unit.outputs.matrix }}
Expand Down Expand Up @@ -82,6 +84,7 @@ jobs:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
timeout-minutes: 60

- name: Run Unit Tests with pytest (Linux)
if: runner.os == 'Linux'
Expand Down Expand Up @@ -130,6 +133,7 @@ jobs:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true'}}
timeout-minutes: 60

- name: Run Integration Tests with pytest (Linux)
if: runner.os == 'Linux'
Expand Down
Loading