Skip to content

Commit

Permalink
Make github actions example more up to date (#74)
Browse files Browse the repository at this point in the history
* Make github actions example more up to date
* Update testing matrix in README.md

The testing matrix has been updated with new versions for operating system, PHP, and Symfony. Additionally, certain combinations leading to incompatible scenarios have been excluded to ensure efficient testing.

---------

Co-authored-by: chapterjason <[email protected]>
  • Loading branch information
loevgaard and chapterjason authored Dec 9, 2023
1 parent f6c5034 commit 0a83997
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,40 @@ jobs:
name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }}
strategy:
matrix:
operating-system: [ ubuntu-latest, windows-latest ]
php: [ '7.4', '8.0', '8.1' ]
symfony: ['4.4.*', '5.3.*', '5.4.*', '6.0.*', '6.1.*']
operating-system: [ 'ubuntu-22.04', 'windows-2022' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
symfony: ['5.4.*', '6.4.*', '7.0.*']
exclude:
- php: '7.4'
symfony: '6.4.*'
operating-system: 'ubuntu-22.04'
- php: '8.0'
symfony: '6.4.*'
operating-system: 'ubuntu-22.04'
- php: '7.4'
symfony: '7.0.*'
operating-system: 'ubuntu-22.04'
- php: '8.0'
symfony: '7.0.*'
operating-system: 'ubuntu-22.04'
- php: '8.1'
symfony: '7.0.*'
operating-system: 'ubuntu-22.04'
- php: '7.4'
symfony: '6.4.*'
operating-system: 'windows-2022'
- php: '8.0'
symfony: '6.4.*'
operating-system: 'windows-2022'
- php: '7.4'
symfony: '7.0.*'
operating-system: 'windows-2022'
- php: '8.0'
symfony: '7.0.*'
operating-system: 'windows-2022'
- php: '8.1'
symfony: '7.0.*'
operating-system: 'windows-2022'

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 0a83997

Please sign in to comment.