Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ jobs:
# block the PR). When changes failed, docs_only is empty → heavy steps run.
if: ${{ !cancelled() }}
runs-on: ${{ matrix.os }}
# Bound a hung runner/test: the suite normally finishes in ~5 min, so a job
# still running at 15 fails fast (and is re-runnable) instead of pinning this
# REQUIRED check for the GitHub default of 6h — seen with a stalled macOS
# runner. bats-windows already sets its own timeout; this covers ubuntu/macos.
timeout-minutes: 15
strategy:
# Cover both GNU (Linux) and BSD (macOS) userlands — the scripts shell out
# to sed/stat/mktemp/ps etc. whose flags differ between them.
Expand Down
Loading