We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218bfe8 commit e0e941fCopy full SHA for e0e941f
.github/workflows/ci.yaml
@@ -28,13 +28,16 @@ jobs:
28
run: composer validate --strict
29
30
stable-tests:
31
- name: Stable Tests
32
- runs-on: ubuntu-latest
+ name: "${{ matrix.operating-system }} / PHP ${{ matrix.php-version }}"
+ runs-on: ${{ matrix.operating-system }}
33
34
strategy:
35
fail-fast: false
36
matrix:
37
- php-version: ['7.4', '8.0', '8.1', '8.2']
+ # add here only the PHP versions and OS used in GitHub CI (for tests)
38
+ # and on the symfony.com server (where the Symfony Docs are built)
39
+ operating-system: ['ubuntu-latest']
40
+ php-version: ['7.4', '8.3']
41
42
steps:
43
- name: 'Checkout code'
0 commit comments