Skip to content

Commit 1549331

Browse files
authored
Merge pull request #10 from inpsyde/feature/add-php-83-84
Update php-qa.yml // add php 8.3 and 8.4
2 parents 52c8a63 + be593be commit 1549331

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/php-qa.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
name: PHP-QA
22

3-
on: [ push ]
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
pull_request:
9+
branches:
10+
- master
411

512
jobs:
613
lint-php:
714
strategy:
815
matrix:
9-
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
16+
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
1017
uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main
1118
with:
1219
PHP_VERSION: ${{ matrix.php }}
1320
tests-unit-php:
1421
strategy:
1522
matrix:
16-
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
23+
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
1724
uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main
1825
secrets:
1926
COMPOSER_AUTH_JSON: ${{ secrets.PACKAGIST_AUTH_JSON }}

0 commit comments

Comments
 (0)