Skip to content

Commit 3d909a2

Browse files
committed
Added php 8.5 to tests
1 parent 8d72075 commit 3d909a2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
15+
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
1616

1717
name: PHP ${{ matrix.php }}
1818

@@ -32,4 +32,4 @@ jobs:
3232
run: composer update --no-interaction --no-progress
3333

3434
- name: Execute tests
35-
run: vendor/bin/phpunit --verbose
35+
run: composer run tests

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ _site/
44
shared/
55
Gemfile.lock
66
composer.lock
7-
.phpunit.result.cache
7+
.phpunit.result.cache
8+
test.php

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
"suggest": {
3434
"opis/string": "A standalone library for manipulating multibyte strings"
3535
},
36+
"scripts": {
37+
"tests": "./vendor/bin/phpunit --verbose --color"
38+
},
3639
"autoload": {
3740
"psr-4": {
3841
"Opis\\JsonSchema\\": "src/"

0 commit comments

Comments
 (0)