Skip to content

Commit 323d7db

Browse files
committedJun 25, 2024·
ci: PHP 8.2 8.3 8.4
1 parent 2fe592a commit 323d7db

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed
 

‎.github/workflows/test.yml

+14-11
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,21 @@ jobs:
1111
php_version:
1212
- 8.0
1313
- 8.1
14+
- 8.2
15+
- 8.3
16+
- 8.4
1417
perfer:
1518
- stable
1619
- lowest
1720
steps:
18-
- uses: actions/checkout@v3
19-
- run: composer validate --strict
20-
- run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
21-
id: composer-cache
22-
- uses: actions/cache@v3
23-
with:
24-
path: ${{ steps.composer-cache.outputs.dir }}
25-
key: dependencies-caches-php-${{ hashFiles('**/composer.lock') }}
26-
restore-keys: dependencies-caches-php-
27-
- run: composer update --prefer-dist --no-interaction --no-suggest --prefer-${{ matrix.perfer }}
28-
- run: ./vendor/bin/phpunit
21+
- uses: actions/checkout@v3
22+
- run: composer validate --strict
23+
- run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
24+
id: composer-cache
25+
- uses: actions/cache@v3
26+
with:
27+
path: ${{ steps.composer-cache.outputs.dir }}
28+
key: dependencies-caches-php-${{ hashFiles('**/composer.lock') }}
29+
restore-keys: dependencies-caches-php-
30+
- run: composer update --prefer-dist --no-interaction --no-suggest --prefer-${{ matrix.perfer }}
31+
- run: ./vendor/bin/phpunit

0 commit comments

Comments
 (0)
Please sign in to comment.