Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Nov 3, 2021
1 parent 5368d7f commit 4d6cce6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion 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)


Expand Down
6 changes: 5 additions & 1 deletion 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" : [
{
Expand Down
9 changes: 9 additions & 0 deletions tests/UtilitySuite/CliReadmeTest.php
Expand Up @@ -28,4 +28,13 @@ class CliReadmeTest extends AbstractReadmeTest
* @var string
*/
protected $packageName = 'Cli';

/**
* @inheritDoc
*/
protected function setUp(): void
{
parent::setUp();
$this->params['travis'] = false;
}
}

0 comments on commit 4d6cce6

Please sign in to comment.