Skip to content

Commit eb0045a

Browse files
committed
feat: add multiple versions of symfony in the ci
1 parent 443ff3b commit eb0045a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
version: [ '8.0', '8.1' ]
10+
php-version: [ '8.0', '8.1' ]
11+
symfony-version: ['^5.4', '^6.0']
1112
fail-fast: false
1213
steps:
1314
- uses: actions/checkout@master
1415
- uses: shivammathur/setup-php@v2
1516
with:
16-
php-version: ${{ matrix.version }}
17+
php-version: ${{ matrix.php-version }}
18+
- run: composer require symfony/symfony:${{ matrix.symfony-version }} --no-update
1719
- run: make install
1820
- run: make ci

0 commit comments

Comments
 (0)