We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfdebfc commit 2ed4482Copy full SHA for 2ed4482
.github/workflows/ci.yml
@@ -28,6 +28,7 @@ jobs:
28
run: php blackbox.php
29
env:
30
BLACKBOX_SET_SIZE: 20
31
+ CI: 'true'
32
coverage:
33
runs-on: ${{ matrix.os }}
34
strategy:
blackbox.php
@@ -24,5 +24,9 @@
24
)
25
->scenariiPerProof(1),
26
27
+ ->when(
+ \getenv('CI') !== false,
+ static fn(Application $app) => $app->scenariiPerProof(1_000),
+ )
->tryToProve(Load::everythingIn(__DIR__.'/proofs/'))
->exit();
0 commit comments