-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9feadd
commit cadbb6d
Showing
3 changed files
with
58 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
tags: | ||
- '*' | ||
name: Tests | ||
jobs: | ||
run: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macOS-latest] | ||
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3'] | ||
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: intl, fileinfo, xdebug, zip #optional | ||
ini-values: "post_max_size=256M, xdebug.mode=coverage" #optional | ||
- name: Check PHP Version | ||
run: php -v | ||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- name: Install dependencies | ||
run: composer install | ||
|
||
- name: Run tests and collect coverage | ||
run: vendor/bin/phpunit --coverage-clover clover.xml tests | ||
- name: Upload coverage to Codacy | ||
uses: codacy/codacy-coverage-reporter-action@v1 | ||
with: | ||
api-token: ${{ secrets.CODACY_API_TOKEN }} | ||
coverage-reports: clover.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
{ | ||
"name": "NGUEREZA Tony", | ||
"email": "[email protected]", | ||
"homepage": "http://www.iacademy.cf", | ||
"homepage": "https://www.platine-php.com", | ||
"role": "developer" | ||
} | ||
], | ||
|
@@ -27,7 +27,7 @@ | |
"phpunit/phpunit": "^9.5", | ||
"platine-php/dev": "1.0.x-dev", | ||
"squizlabs/php_codesniffer": "3.*", | ||
"phpstan/phpstan": "0.12.x-dev" | ||
"phpstan/phpstan": "^1.8" | ||
}, | ||
|
||
"autoload": { | ||
|
@@ -47,12 +47,6 @@ | |
"sort-packages": true | ||
}, | ||
|
||
"extra": { | ||
"branch-alias": { | ||
"dev-develop": "1.0.x-dev" | ||
} | ||
}, | ||
|
||
"scripts": { | ||
"test": "phpunit --colors=always", | ||
"static": "phpstan analyze", | ||
|
@@ -61,6 +55,6 @@ | |
"analyze": "phpmd src xml phpmd.xml" | ||
}, | ||
|
||
"minimum-stability": "dev", | ||
"minimum-stability": "stable", | ||
"prefer-stable": true | ||
} |