Skip to content

Commit

Permalink
ci: use pipeline setup from other bundle, because it's easier
Browse files Browse the repository at this point in the history
  • Loading branch information
lukadschaak committed Nov 8, 2023
1 parent bbfdf4a commit a5dd1b0
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/tests.yaml
Expand Up @@ -32,22 +32,12 @@ jobs:
fail-fast: false
matrix:
include:
# Pimcore 10.5.1
- php-version: "8.1"
dependencies: "lowest"
# Pimcore 10.6.*
dependencies: "lowest" # Pimcore 10.5.0
- php-version: "8.1"
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.*
dependencies: "highest" # Pimcore 11.*
- php-version: "8.2"
dependencies: "highest"
dependencies: "highest" # Pimcore 11.*

steps:
- name: Git Checkout
Expand All @@ -66,7 +56,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'

- name: Execute tests
run: composer tests
Expand Down

0 comments on commit a5dd1b0

Please sign in to comment.