Skip to content

Commit

Permalink
fixed matrix run
Browse files Browse the repository at this point in the history
  • Loading branch information
ogmueller committed Mar 18, 2024
1 parent 6eff40a commit 1a99515
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -21,11 +21,15 @@ jobs:
max-parallel: 2
fail-fast: false
matrix:
php: [
[ version: "8.1", experimental: false ],
[ version: "8.2", experimental: false ],
[ version: "8.3", experimental: false ],
[ version: "8.4", experimental: true ]
php:
- version: "8.1"
experimental: false
- version: "8.2"
experimental: false
- version: "8.3"
experimental: false
- version: "8.4"
experimental: true
]
composer-param: [
"update --no-progress --prefer-dist --prefer-lowest",
@@ -34,7 +38,7 @@ jobs:
name: "PHP ${{ matrix.php.version }} test"
steps:
- name: "Check if PHP ${{ matrix.php.version }} is supported"
if: "matrix.experimental == 'true'"
if: "matrix.experimental == true"
run: "echo 'PHP ${{ matrix.php.version }} is experimental'"
- name: "checkout project"
uses: "actions/checkout@v4"

0 comments on commit 1a99515

Please sign in to comment.