Skip to content

Commit ef4b064

Browse files
committed
Fail on extension / tool installation failure
This leverages a new feature of shivammathur/setup-php that allows to fail the build if an extension or tool fails to install.
1 parent 9d63c3b commit ef4b064

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ on:
1313
schedule:
1414
- cron: "42 3 * * *"
1515

16+
env:
17+
fail-fast: true
18+
1619
jobs:
1720
phpunit-smoke-check:
1821
name: "PHPUnit with SQLite"
@@ -92,7 +95,7 @@ jobs:
9295
uses: "shivammathur/setup-php@v2"
9396
with:
9497
php-version: "${{ matrix.php-version }}"
95-
extensions: "oci8"
98+
extensions: "does_not_exist"
9699
coverage: "pcov"
97100
ini-values: "zend.assertions=1"
98101

0 commit comments

Comments
 (0)