Skip to content

Commit fd44209

Browse files
test: Allow other jobs to run when another fails in the matrix
1 parent 6391b11 commit fd44209

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
ci:
77
runs-on: ${{ matrix.os }}
88
strategy:
9-
fail-fast: true
9+
fail-fast: false
1010
matrix:
1111
os: [macos-latest]
1212
php: [8.1, 8.2, 8.3, 8.4]

examples/transcription.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
require_once __DIR__.'/../vendor/autoload.php';
1717

18-
$modelPath = ModelLoader::loadModel('tiny', __DIR__.'/models');
18+
$modelPath = ModelLoader::loadModel('tiny.en', __DIR__.'/models');
1919
$audioPath = __DIR__.'/sounds/jfk.wav';
2020

2121
try {

tests/Feature/ProcessingTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090

9191
$fullParams = WhisperFullParams::default();
9292

93-
$ctx->fullParallel($pcm, $fullParams, 3);
93+
$ctx->fullParallel($pcm, $fullParams, 2);
9494

9595
$numSegments = $ctx->nSegments();
9696
expect($numSegments)->toBeGreaterThan(0);

0 commit comments

Comments
 (0)