Skip to content

Commit 46acc66

Browse files
committed
Update to PHP 8.4 #KDS-587
1 parent f8522f3 commit 46acc66

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
strategy:
1212
matrix:
1313
operating-system: [ ubuntu-latest, ubuntu-20.04 ]
14-
php: [ '8.0', '8.1' ]
14+
php: [ '8.0', '8.1', '8.4' ]
1515

1616
steps:
1717
- uses: actions/checkout@master
1818

19-
- name: Setup PHP
20-
uses: nanasess/setup-php@master
19+
- name: Setup PHP Action
20+
uses: shivammathur/setup-php@master
2121
with:
2222
php-version: ${{ matrix.php }}
2323

2424
- name: Install dependencies
2525
run: composer install
2626

2727
- name: Run tests
28-
run: php vendor/bin/codecept run
28+
run: composer run test

composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@
3232
"Tests\\Fixtures\\": "tests/Fixtures",
3333
"Tests\\Unit\\": "tests/Unit"
3434
}
35+
},
36+
"scripts": {
37+
"test": "codecept run"
3538
}
3639
}

0 commit comments

Comments
 (0)