From 07584682fdfd640da9efbd299936232ca9e2c095 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Mon, 18 Mar 2024 10:18:32 +0100 Subject: [PATCH] run unit tests also with pcntl --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3a17ef18cd..b8258af644 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -119,6 +119,11 @@ jobs: - "8.3" - "8.4" + include: + - os: ubuntu-latest + php-version: "8.3" + add-ext: ", pcntl" + steps: - name: Configure Git to avoid issues with line endings if: matrix.os == 'windows-latest' @@ -131,7 +136,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} - extensions: ${{ env.PHP_EXTENSIONS }} + extensions: "${{ env.PHP_EXTENSIONS }}${{ matrix.add-ext }}" ini-values: ${{ env.PHP_INI_VALUES }} tools: none