Skip to content

Commit

Permalink
Update versions compatibilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierstoval committed Jun 10, 2024
1 parent 4e59f42 commit 1398b3f
Showing 1 changed file with 25 additions and 21 deletions.
46 changes: 25 additions & 21 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,30 @@ jobs:
- '8.3'

symfony-version:
- '5.3'
- '5.4'
- '6.0'
- '6.4'
- '7.0'
- '7.1'

exclude:
- php-version: 7.2
symfony-version: 6.0
- php-version: 7.3
symfony-version: 6.0
- php-version: 7.4
symfony-version: 6.0
- php-version: 8.0
symfony-version: 6.0

include:
- php-version: 8.2
symfony-version: 7.0
- php-version: 8.3
symfony-version: 7.0
- { php-version: 7.2, symfony-version: 6.4 }
- { php-version: 7.2, symfony-version: 7.0 }
- { php-version: 7.2, symfony-version: 7.1 }

- { php-version: 7.3, symfony-version: 6.4 }
- { php-version: 7.3, symfony-version: 7.0 }
- { php-version: 7.3, symfony-version: 7.1 }

- { php-version: 7.4, symfony-version: 6.4 }
- { php-version: 7.4, symfony-version: 7.0 }
- { php-version: 7.4, symfony-version: 7.1 }

- { php-version: 8.0, symfony-version: 6.4 }
- { php-version: 8.0, symfony-version: 7.0 }
- { php-version: 8.0, symfony-version: 7.1 }

- { php-version: 8.0, symfony-version: 6.4 }
- { php-version: 8.1, symfony-version: 7.0 }

name: PHP ${{ matrix.php-version }} and Symfony ${{ matrix.symfony-version }}
steps:
Expand All @@ -59,12 +64,11 @@ jobs:
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Setup
- name: 🚧 Setup
run: composer config extra.symfony.require ^${{ matrix.symfony-version }}

- name: Install
- name: 🛠 Install
run: make install

- name: Test
run: |
make test
- name: 🧪 Test
run: make test

0 comments on commit 1398b3f

Please sign in to comment.