Skip to content

Commit

Permalink
increase the number of scenarii per proof in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Nov 9, 2024
1 parent dfdebfc commit 2ed4482
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
run: php blackbox.php
env:
BLACKBOX_SET_SIZE: 20
CI: 'true'
coverage:
runs-on: ${{ matrix.os }}
strategy:
Expand Down
4 changes: 4 additions & 0 deletions blackbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@
)
->scenariiPerProof(1),
)
->when(
\getenv('CI') !== false,
static fn(Application $app) => $app->scenariiPerProof(1_000),
)
->tryToProve(Load::everythingIn(__DIR__.'/proofs/'))
->exit();

0 comments on commit 2ed4482

Please sign in to comment.