Skip to content

Commit

Permalink
Merge pull request #699 from greg0ire/scrutinizer➡codecov
Browse files Browse the repository at this point in the history
Use CodeCov instead of Scrutinizer
  • Loading branch information
greg0ire authored Jun 16, 2020
2 parents 6b13045 + 4439d47 commit 0086b17
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: "Checkout"
uses: "actions/checkout@v2.0.0"
uses: "actions/checkout@v2"

- name: "Install PHP"
uses: "shivammathur/setup-php@1.8.1"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
Expand Down
36 changes: 0 additions & 36 deletions .scrutinizer.yml

This file was deleted.

5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,5 @@ script:
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then php build/coverage-checker.php build/clover.xml 70 ; fi

after_script:
- if [[ $TEST_COVERAGE == 'true' ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then php ocular.phar code-coverage:upload --format=php-clover ./build/clover.xml; fi
after_success:
- if [[ $TEST_COVERAGE == 'true' ]]; then bash <(curl -s https://codecov.io/bash) -f ./build/clover.xml; fi
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DoctrineModule for Laminas

[![Master Branch Build Status](https://secure.travis-ci.org/doctrine/DoctrineModule.png?branch=master)](http://travis-ci.org/doctrine/DoctrineModule) [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/doctrine/DoctrineModule/badges/quality-score.png?s=9772884307bfc08a7eae862fd553e9d5df251729)](https://scrutinizer-ci.com/g/doctrine/DoctrineModule/) [![Code Coverage](https://scrutinizer-ci.com/g/doctrine/DoctrineModule/badges/coverage.png?s=3a35b83cbfdb95b54fd01fd1aef6b0c65a09a43b)](https://scrutinizer-ci.com/g/doctrine/DoctrineModule/)
[![Master Branch Build Status](https://secure.travis-ci.org/doctrine/DoctrineModule.png?branch=master)](http://travis-ci.org/doctrine/DoctrineModule) [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/doctrine/DoctrineModule/badges/quality-score.png?s=9772884307bfc08a7eae862fd553e9d5df251729)](https://scrutinizer-ci.com/g/doctrine/DoctrineModule/) [![Code Coverage](https://codecov.io/gh/doctrine/DoctrineModule/branch/master)](https://codecov.io/gh/doctrine/DoctrineModule/branch/master)

DoctrineModule provides basic functionality consumed by
[DoctrineORMModule](http://www.github.com/doctrine/DoctrineORMModule)
Expand Down

0 comments on commit 0086b17

Please sign in to comment.