We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 443ff3b commit eb0045aCopy full SHA for eb0045a
1 file changed
.github/workflows/ci.yml
@@ -7,12 +7,14 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- version: [ '8.0', '8.1' ]
+ php-version: [ '8.0', '8.1' ]
11
+ symfony-version: ['^5.4', '^6.0']
12
fail-fast: false
13
steps:
14
- uses: actions/checkout@master
15
- uses: shivammathur/setup-php@v2
16
with:
- php-version: ${{ matrix.version }}
17
+ php-version: ${{ matrix.php-version }}
18
+ - run: composer require symfony/symfony:${{ matrix.symfony-version }} --no-update
19
- run: make install
20
- run: make ci
0 commit comments