Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
test for github code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-gao committed Jul 22, 2024
1 parent 9cebc0b commit 76323cf
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: build

on: push

jobs:
set_status_in_progress:
name: set_status_in_progress
Expand All @@ -20,6 +20,24 @@ jobs:
with:
module_build: true
runner: biggy-tide
phpunit_coverage:
name: phpunit_coverage
needs: tide_build
runs-on: biggy-tide
steps:
- name: Change to project directory
run: cd $GITHUB_WORKSPACE
- name: Debug information
run: |
pwd
ls -la
ls -la dpc-sdp
which phpunit
which phpdbg
phpunit --version
- name: Run PHPUnit with coverage using phpdbg
run: |
phpdbg -qrr /app/vendor/bin/phpunit /app/dpc-sdp --coverage-html /app/phpunit/coverage-report
export_config:
name: export_config
secrets: inherit
Expand Down
9 changes: 9 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
coverage:
status:
project:
default:
target: 80%
threshold: 5%
patch:
default:
target: 80%

0 comments on commit 76323cf

Please sign in to comment.