Skip to content

Commit 887bbe6

Browse files
committed
add phpunit bootstrap
1 parent b03196f commit 887bbe6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
17+
1718
- name: Set up PHP
1819
uses: shivammathur/setup-php@v2
1920
with:
2021
php-version: "${{ matrix.php }}"
22+
2123
- name: Install dependencies
2224
run: composer self-update && composer install && composer dump-autoload
25+
2326
- name: Run tests and collect coverage
24-
run: vendor/bin/phpunit --bootstrap ./vendor/autoload.php --coverage-clover coverage.xml .
27+
run: vendor/bin/phpunit --bootstrap vendor/autoload.php --coverage-clover coverage.xml .
28+
2529
- name: Upload coverage to Codecov
2630
uses: codecov/codecov-action@v4-beta
2731
env:

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"ext-json": "*"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^7|^8|^9|^10|^11"
30+
"phpunit/phpunit": "^7|^8|^9|^10"
3131
},
3232
"suggest": {
3333
"ext-sodium": "Sodium extension is required for EdDSA algortihms"

0 commit comments

Comments
 (0)