Skip to content

Commit

Permalink
Updates deps + remove travis
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Nov 8, 2021
1 parent f8b3c43 commit 6d2cb8c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 43 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
41 changes: 0 additions & 41 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.dist.md
@@ -1,6 +1,6 @@
# JBZoo / __PACKAGE__

[![Build Status](https://travis-ci.org/JBZoo/__PACKAGE__.svg)](https://travis-ci.org/JBZoo/__PACKAGE__) [![Coverage Status](https://coveralls.io/repos/JBZoo/__PACKAGE__/badge.svg)](https://coveralls.io/github/JBZoo/__PACKAGE__) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/__PACKAGE__/coverage.svg)](https://shepherd.dev/github/JBZoo/__PACKAGE__)
[![Coverage Status](https://coveralls.io/repos/JBZoo/__PACKAGE__/badge.svg)](https://coveralls.io/github/JBZoo/__PACKAGE__) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/__PACKAGE__/coverage.svg)](https://shepherd.dev/github/JBZoo/__PACKAGE__)
[![Stable Version](https://poser.pugx.org/jbzoo/__PACKAGE_LOW__/version)](https://packagist.org/packages/jbzoo/__PACKAGE_LOW__) [![Latest Unstable Version](https://poser.pugx.org/jbzoo/__PACKAGE_LOW__/v/unstable)](https://packagist.org/packages/jbzoo/__PACKAGE_LOW__) [![Dependents](https://poser.pugx.org/jbzoo/__PACKAGE_LOW__/dependents)](https://packagist.org/packages/jbzoo/__PACKAGE_LOW__/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/jbzoo/__PACKAGE_LOW__)](https://github.com/JBZoo/__PACKAGE__/issues) [![Total Downloads](https://poser.pugx.org/jbzoo/__PACKAGE_LOW__/downloads)](https://packagist.org/packages/jbzoo/__PACKAGE_LOW__/stats) [![GitHub License](https://img.shields.io/github/license/jbzoo/__PACKAGE_LOW__)](https://github.com/JBZoo/__PACKAGE__/blob/master/LICENSE)


Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -17,7 +17,7 @@
},

"require-dev" : {
"jbzoo/toolbox-dev" : "^2.13.1"
"jbzoo/toolbox-dev" : "^3.1.0"
},

"autoload" : {
Expand Down
10 changes: 10 additions & 0 deletions tests/__NS__ReadmeTest.php
Expand Up @@ -28,4 +28,14 @@ class __NS__ReadmeTest extends AbstractReadmeTest
* @var string
*/
protected $packageName = '__PACKAGE__';

/**
* @inheritDoc
*/
protected function setUp(): void
{
parent::setUp();

$this->params['travis'] = false;
}
}

0 comments on commit 6d2cb8c

Please sign in to comment.