Skip to content

Commit

Permalink
(feat) code KPI
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed Sep 5, 2024
1 parent 28283b9 commit 2d5b3db
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 7 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/coveritup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
on:
- push

name: "CoveritUp"

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
php: [8.3]
name: PHP ${{ matrix.php }}

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v2

- name: Install tools
run: |
curl -sLk https://raw.githubusercontent.com/kevincobain2000/cover-totalizer/master/install.sh | sh
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-versions }}

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
coverage: pcov
extensions: intl, gd, zip, pdo, sqlite, pdo_sqlite, dom, curl, libxml, mbstring, fileinfo, exif, iconv
ini-values: memory_limit=-1,disable_functions="",pcov.exclude="~(vendor|tests|node_modules)~",pcov.directory="./"
php-version: ${{ matrix.php }}
tools: composer:v2

- name: NPM Install Time
uses: kevincobain2000/action-coveritup@v2
with:
type: npm-install-time
metric: sec
command: cd ui/; npm install
record: runtime

- name: Composer Install Time
uses: kevincobain2000/action-coveritup@v2
with:
type: composer-install-time
metric: sec
command: composer install
record: runtime

- name: PHPUNIT Tests
uses: kevincobain2000/action-coveritup@v2
with:
type: phpunit-run-time
metric: sec
command: ./vendor/bin/phpunit --coverage-clover=coverage.xml
record: runtime

- name: Code Coverage
uses: kevincobain2000/action-coveritup@v2
with:
type: phpunit-coverage
metric: '%'
command: ./cover-totalizer coverage.xml

- name: "Comment on PR"
uses: kevincobain2000/action-coveritup@v2
with:
pr_comment: true
diff_types: phpunit-coverage
8 changes: 1 addition & 7 deletions .github/workflows/phptest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,4 @@ jobs:
- name: PHPUNIT Tests
run: |
./vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Upload to codecov
uses: codecov/codecov-action@v3
with:
name: PHP ${{ matrix.php }}
files: coverage.xml
./vendor/bin/phpunit

0 comments on commit 2d5b3db

Please sign in to comment.