Skip to content

Commit 8bf4622

Browse files
authored
Merge pull request #428 from StudioMaX/2.0-workflow
Fix tests action on PHP 8.2/8.3
2 parents e1450a6 + fb1e194 commit 8bf4622

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/continuous-integration.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,21 @@ jobs:
6464
- "7.3"
6565
- "7.4"
6666
- "8.0"
67+
- "8.1"
68+
- "8.2"
6769
experimental:
6870
- false
6971
include:
70-
- php-version: "8.1"
72+
- php-version: "8.3"
7173
experimental: true
7274
composer-options: "--ignore-platform-reqs"
7375
steps:
74-
- uses: "actions/checkout@v2"
76+
- uses: "actions/checkout@v3"
7577
- uses: "shivammathur/setup-php@v2"
7678
with:
7779
php-version: "${{ matrix.php-version }}"
7880
coverage: "none"
79-
- uses: "ramsey/composer-install@v1"
81+
- uses: "ramsey/composer-install@v2"
8082
with:
8183
composer-options: "${{ matrix.composer-options }}"
8284
- name: "Run unit tests"

0 commit comments

Comments
 (0)