Skip to content

Commit 53a4da0

Browse files
authored
Merge pull request #33 from inpsyde/refactor/use-main-branch
2 parents 02ab8d7 + 3f1b398 commit 53a4da0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
jobs:
66
ddev-playwright:
7-
uses: inpsyde/reusable-workflows/.github/workflows/ddev-playwright.yml@feature/ddev-playwright
7+
uses: inpsyde/reusable-workflows/.github/workflows/ddev-playwright.yml@main
88
secrets:
99
COMPOSER_AUTH_JSON: ${{ secrets.PACKAGIST_AUTH_JSON }}
1010
with:

.github/workflows/unit-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ on:
1010
jobs:
1111
tests-unit-php:
1212
uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main
13+
strategy:
14+
matrix:
15+
php: ["7.3", "7.4", "8.0", "8.1"]
1316
secrets:
1417
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}
1518
with:
1619
PHPUNIT_ARGS: '--testsuite=Unit --coverage-text'
17-
PHP_MATRIX: >-
18-
["7.3", "7.4", "8.0", "8.1"]
20+
PHP_VERSION: ${{ matrix.php }}

0 commit comments

Comments
 (0)