-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
81 additions
and
0 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 |
---|---|---|
|
@@ -58,3 +58,5 @@ jobs: | |
|
||
|
||
|
||
|
||
|
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,62 @@ | ||
name: Executing Code Coverage | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- features/** | ||
- test/** | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
- features/** | ||
env: | ||
REQUIRED_PHP_EXTENSIONS: "ctype, filter, hash, iconv, json" | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
operating-system: [ 'ubuntu-latest'] | ||
php-versions: [ '8.4' ] | ||
dependency-stability: [ 'prefer-none' ] | ||
|
||
name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install PHP versions | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, soap, intl, iconv, fileinfo | ||
coverage: "pcov" | ||
tools: "composer:v2" | ||
|
||
- name: Install Dependencies | ||
run: composer install --prefer-dist --no-interaction | ||
|
||
- name: Show dir | ||
run: pwd | ||
- name: PHP Version | ||
run: php --version | ||
- name: Platform check | ||
run: composer check-platform-reqs | ||
|
||
|
||
- name: running tests | ||
run: "vendor/bin/pest --configuration=phpunit.xml.dist --coverage-clover=.build/logs/clover.xml" | ||
|
||
- name: 'Upload coverage reports to Codecov' | ||
env: | ||
my_codecov_token: ${{ secrets.CODECOV_TOKEN }} | ||
if: ${{ env.my_codecov_token != '' && hashFiles('./.build/logs/clover.xml')!= '' }} | ||
uses: 'codecov/codecov-action@v5.1.2' | ||
with: | ||
files: './.build/logs/clover.xml' | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
|
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,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
> | ||
<testsuites> | ||
<testsuite name="Test Suite"> | ||
<directory suffix="Test.php">./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |