File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 23
23
- name : Build docker images
24
24
run : |
25
25
docker-compose build --build-arg PHP_VERSION=${{ matrix.php }}
26
+ - name : Install dependencies
27
+ run : |
26
28
docker-compose run --rm tests composer install --no-interaction
29
+ - name : Generating code coverage
30
+ run : |
27
31
docker-compose run --rm tests ./vendor/bin/phpunit --coverage-clover ./clover.xml
32
+ - name : Coveralls Parallel
33
+ uses : coverallsapp/github-action@master
34
+ with :
35
+ github-token : ${{ secrets.github_token }}
36
+ path-to-lcov : ./clover.xml
Original file line number Diff line number Diff line change 30
30
"orchestra/testbench" : " ^3.1|^4.0" ,
31
31
"mockery/mockery" : " ^1.0" ,
32
32
"satooshi/php-coveralls" : " ^2.0" ,
33
+ "php-coveralls/php-coveralls" : " ^2.1" ,
33
34
"doctrine/dbal" : " ^2.5"
34
35
},
35
36
"autoload" : {
You can’t perform that action at this time.
0 commit comments