File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,18 @@ jobs:
14
14
steps :
15
15
- name : Checkout
16
16
uses : actions/checkout@v4
17
+
17
18
- name : Set up PHP
18
19
uses : shivammathur/setup-php@v2
19
20
with :
20
21
php-version : " ${{ matrix.php }}"
22
+
21
23
- name : Install dependencies
22
24
run : composer self-update && composer install && composer dump-autoload
25
+
23
26
- 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
+
25
29
- name : Upload coverage to Codecov
26
30
uses : codecov/codecov-action@v4-beta
27
31
env :
Original file line number Diff line number Diff line change 27
27
"ext-json" : " *"
28
28
},
29
29
"require-dev" : {
30
- "phpunit/phpunit" : " ^7|^8|^9|^10|^11 "
30
+ "phpunit/phpunit" : " ^7|^8|^9|^10"
31
31
},
32
32
"suggest" : {
33
33
"ext-sodium" : " Sodium extension is required for EdDSA algortihms"
You can’t perform that action at this time.
0 commit comments