Skip to content

Commit

Permalink
Merge branch 'develop' into feature/financial-statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jordankanta committed Jan 19, 2024
2 parents 146e33c + 69c6be8 commit 47bcb49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Upload to Codecov 📊
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODE_COV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
verbose: true

Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Inpi RNE PHP is a PHP library to easily interact with RNE INPI API. It allow use
This version is based on the INPI Documentation located in data folder of this repository

## Requirements
PHP 8.1.0 and later.
PHP 8.2.0 and later.

## Installation
Use [Composer](https://getcomposer.org/) to install this package :
Expand Down Expand Up @@ -41,5 +41,12 @@ $data = $client->searchBySiren('889924320');
To execute tests of the package :
vendor/bin/phpunit

## Code coverage
To maintain good code quality, we encourage contributors to have the best code coverage
You have to generate the coverage report with a tool like xdebug when it's installed you can launch this command :
```XDEBUG_MODE=coverage ./vendor/bin/phpunit --configuration phpunit.xml --coverage-clover test-reports/cov.xml```

If you use VSCode you can show it with this extension : [Coverage Gutters](https://github.com/ryanluker/vscode-coverage-gutters/)

## Authors
Kanta Inc

0 comments on commit 47bcb49

Please sign in to comment.