Skip to content

Commit

Permalink
fix: use the correct Pimcore version with the correct php versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukadschaak committed Nov 8, 2023
1 parent a3c73e5 commit ee67c96
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yaml
Expand Up @@ -32,13 +32,21 @@ jobs:
fail-fast: false
matrix:
include:
# Pimcore 10.5.1
- php-version: "8.1"
dependencies: "lowest"
# Pimcore 10.6.*
- php-version: "8.1"
dependencies: "highest"
composer-options: "--with pimcore/pimcore=^10.6"
# Pimcore 11.*
- php-version: "8.1"
dependencies: "highest"
# Pimcore 11.0
- php-version: "8.2"
dependencies: "lowest"
composer-options: "--with pimcore/pimcore=^11.0"
# Pimcore 11.*
- php-version: "8.2"
dependencies: "highest"

Expand All @@ -59,7 +67,7 @@ jobs:

- name: Add Pimcore Admin UI
run: composer require --dev pimcore/admin-ui-classic-bundle --no-interaction
if: matrix.dependencies == 'highest' && matrix.php-version == '8.2'
if: matrix.dependencies == 'highest' || matrix.php-version == '8.2'

- name: Execute tests
run: composer tests
Expand Down

0 comments on commit ee67c96

Please sign in to comment.