Skip to content

Commit

Permalink
fix(ci): drop support about php 8.1 for prevent any problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdugue authored Nov 5, 2024
1 parent ffacd61 commit 4db7576
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,16 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3']
php: ['8.2', '8.3']
symfony: ['6.0.*', '6.1.*', '6.2.*', '6.3.*', '6.4.*', '7.0.*', '7.1.*']
composer-flags: ['--prefer-stable']
extensions: ['curl, iconv, mbstring, pdo, pdo_sqlite, sqlite, zip']
include:
- php: '8.1'
- php: '8.2'
symfony: '6.0.*'
composer-flags: '--prefer-stable --prefer-lowest'
extensions: 'curl, iconv, mbstring, pdo, pdo_sqlite, sqlite, zip'
exclude:
- php: '8.1'
symfony: '7.0.*'
- php: '8.1'
symfony: '7.1.*'
- php: '8.2'
symfony: '6.0.*'
name: "PHP ${{ matrix.php }} - Symfony ${{ matrix.symfony }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"
Expand All @@ -47,4 +43,4 @@ jobs:

- name: Run PHPUnit
run: bin/phpunit --verbose


0 comments on commit 4db7576

Please sign in to comment.