diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a58793..581cb80 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,6 +56,11 @@ jobs: - name: 🧪 PHPUnit Tests run: make test --no-print-directory + - name: Uploading coverage to coveralls + env: + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: make report-coveralls --no-print-directory + - name: Upload Artifacts uses: actions/upload-artifact@v2 with: diff --git a/README.md b/README.md index 9e2f98b..d791efc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # JBZoo / Cli -[![Build Status](https://travis-ci.org/JBZoo/Cli.svg)](https://travis-ci.org/JBZoo/Cli) [![Coverage Status](https://coveralls.io/repos/JBZoo/Cli/badge.svg)](https://coveralls.io/github/JBZoo/Cli) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Cli/coverage.svg)](https://shepherd.dev/github/JBZoo/Cli) +[![Coverage Status](https://coveralls.io/repos/JBZoo/Cli/badge.svg)](https://coveralls.io/github/JBZoo/Cli) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Cli/coverage.svg)](https://shepherd.dev/github/JBZoo/Cli) [![Stable Version](https://poser.pugx.org/jbzoo/cli/version)](https://packagist.org/packages/jbzoo/cli) [![Latest Unstable Version](https://poser.pugx.org/jbzoo/cli/v/unstable)](https://packagist.org/packages/jbzoo/cli) [![Dependents](https://poser.pugx.org/jbzoo/cli/dependents)](https://packagist.org/packages/jbzoo/cli/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/jbzoo/cli)](https://github.com/JBZoo/Cli/issues) [![Total Downloads](https://poser.pugx.org/jbzoo/cli/downloads)](https://packagist.org/packages/jbzoo/cli/stats) [![GitHub License](https://img.shields.io/github/license/jbzoo/cli)](https://github.com/JBZoo/Cli/blob/master/LICENSE) diff --git a/composer.json b/composer.json index 2c5059a..cfc211d 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,12 @@ { "name" : "jbzoo/cli", "type" : "library", - "description" : "__DESCRIPTION__", + "description" : "The framework helps create CLI tools and provides new tools for symfony/console, symfony/process.", "license" : "MIT", + "keywords" : [ + "jbzoo", "terminal", "console", "cli", "command-line", "console-application", "symfony", "process", + "symfony-console", "symfony-process" + ], "authors" : [ { diff --git a/tests/UtilitySuite/CliReadmeTest.php b/tests/UtilitySuite/CliReadmeTest.php index a4ad015..77be7f5 100644 --- a/tests/UtilitySuite/CliReadmeTest.php +++ b/tests/UtilitySuite/CliReadmeTest.php @@ -28,4 +28,13 @@ class CliReadmeTest extends AbstractReadmeTest * @var string */ protected $packageName = 'Cli'; + + /** + * @inheritDoc + */ + protected function setUp(): void + { + parent::setUp(); + $this->params['travis'] = false; + } }