From a831508c9a7059ae6eb403727dc2283e6208b5bb Mon Sep 17 00:00:00 2001 From: Can Demiralp Date: Mon, 12 Jan 2026 15:19:47 +0100 Subject: [PATCH] [ECP-8406] Introduce a test matrix and add PHP 8.4 --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ae0c41..3331794 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,6 +5,11 @@ jobs: run: name: Run runs-on: ubuntu-latest + + strategy: + matrix: + php-version: ["7.4","8.4"] + permissions: contents: read @@ -12,7 +17,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '7.4' + php-version: ${{ matrix.php-version }} - name: Checkout uses: actions/checkout@v2