Skip to content

Commit

Permalink
Merge 1a12006 into 991406f
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed Mar 19, 2020
2 parents 991406f + 1a12006 commit bd8fd17
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,10 @@ jobs:
run: composer update --no-progress --no-suggest ${{ matrix.composer_flags }}

- name: Test
run: composer test
run: composer test -- --coverage-clover=./build/logs/clover.xml

- name: Collect coverage
if: matrix.os == 'ubuntu-latest' && matrix.php-version == '7.4' && matrix.composer_flags == ''
run: |
composer require --dev php-coveralls/php-coveralls
COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_RUN_LOCALLY=1 ./vendor/bin/php-coveralls -v
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
[![Latest Stable Version](https://img.shields.io/packagist/v/kubawerlos/types-checker.svg)](https://packagist.org/packages/kubawerlos/types-checker)
[![PHP version](https://img.shields.io/packagist/php-v/kubawerlos/types-checker.svg)](https://php.net)
[![CI Status](https://github.com/kubawerlos/types-checker/workflows/CI/badge.svg?branch=master&event=push)](https://github.com/kubawerlos/types-checker/actions)

[![Code coverage](https://img.shields.io/coveralls/github/kubawerlos/types-checker/master.svg)](https://coveralls.io/github/kubawerlos/types-checker?branch=master)
[![Psalm type coverage](https://shepherd.dev/github/kubawerlos/types-checker/coverage.svg)](https://shepherd.dev/github/kubawerlos/types-checker)

A tool to find missing type declarations in PHP 7 code.
Expand Down

0 comments on commit bd8fd17

Please sign in to comment.