From e0e941f413537e46f2584b2e95499b1ebbdc90ca Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 25 Jan 2024 11:52:45 +0100 Subject: [PATCH] Test this project on more platforms --- .github/workflows/ci.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7eafde9..bc16178 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,13 +28,16 @@ jobs: run: composer validate --strict stable-tests: - name: Stable Tests - runs-on: ubuntu-latest + name: "${{ matrix.operating-system }} / PHP ${{ matrix.php-version }}" + runs-on: ${{ matrix.operating-system }} strategy: fail-fast: false matrix: - php-version: ['7.4', '8.0', '8.1', '8.2'] + # add here only the PHP versions and OS used in GitHub CI (for tests) + # and on the symfony.com server (where the Symfony Docs are built) + operating-system: ['ubuntu-latest'] + php-version: ['7.4', '8.3'] steps: - name: 'Checkout code'