Skip to content

Commit

Permalink
Fix matrix build config
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianfeldmann committed Aug 22, 2024
1 parent b34d004 commit 9f30f3f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php: ['8.0', '8.1', '8.2']
buildphar: [false, false, true]
experimental: [false]
include:
- php: 8.0
buildphar: false
experimental: false
- php: 8.1
buildphar: false
experimental: false
- php: 8.2
buildphar: true
experimental: false
- php: 8.3
buildphar: true
experimental: false
Expand Down Expand Up @@ -59,7 +65,7 @@ jobs:
- name: Static code analysis
run: tools/phpstan analyse

- name: Force install Symfony 5
- name: Force install PHAR Symfony version
if: ${{ matrix.buildphar }}
run: COMPOSER=composer.phar.json composer update

Expand Down

0 comments on commit 9f30f3f

Please sign in to comment.