Skip to content

Commit 2ed4482

Browse files
committed
increase the number of scenarii per proof in the CI
1 parent dfdebfc commit 2ed4482

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
run: php blackbox.php
2929
env:
3030
BLACKBOX_SET_SIZE: 20
31+
CI: 'true'
3132
coverage:
3233
runs-on: ${{ matrix.os }}
3334
strategy:

blackbox.php

+4
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,9 @@
2424
)
2525
->scenariiPerProof(1),
2626
)
27+
->when(
28+
\getenv('CI') !== false,
29+
static fn(Application $app) => $app->scenariiPerProof(1_000),
30+
)
2731
->tryToProve(Load::everythingIn(__DIR__.'/proofs/'))
2832
->exit();

0 commit comments

Comments
 (0)