Skip to content

Commit 5515101

Browse files
authored
Update code_checks.yaml
1 parent 9fa7b76 commit 5515101

File tree

1 file changed

+6
-15
lines changed

1 file changed

+6
-15
lines changed

.github/workflows/code_checks.yaml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,14 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: ['8.2']
13-
stability: [ prefer-stable ]
14-
include:
15-
- php: '8.1'
16-
stability: prefer-lowest
17-
- php: '8.1'
18-
stability: prefer-stable
19-
- php: '8.2'
20-
stability: prefer-stable
21-
- php: '8.3'
22-
stability: prefer-stable
23-
#- php: '8.4'
24-
#stability: prefer-stable
12+
php: ['8.2', '8.3']
13+
stability: [prefer-stable]
14+
# Entferne PHP 8.1, da Laravel 11+ und 12.x PHP 8.2 oder höher erfordern.
15+
# Wenn du eine Version <= PHP 8.1 verwenden möchtest, musst du eventuell auf Laravel 10 downgraden.
2516

2617
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
2718
steps:
28-
# basically git clone
19+
# Git-Checkout
2920
- uses: actions/checkout@v4
3021

3122
- name: Cache dependencies
@@ -34,7 +25,7 @@ jobs:
3425
path: ~/.composer/cache/files
3526
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
3627

37-
# use PHP of specific version
28+
# PHP-Version einrichten
3829
- uses: shivammathur/setup-php@v2
3930
with:
4031
php-version: ${{ matrix.php }}

0 commit comments

Comments
 (0)