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 1ff6df9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
21 changes: 20 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,25 @@ jobs:
with:
module_build: true
runner: biggy-tide

phpunit_coverage:
name: PHPUnit Tests and Coverage
needs: tide_build
runs-on: biggy-tide
steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist

- name: Run PHPUnit tests with coverage
run: phpdbg -qrr vendor/bin/phpunit ./dpc-sdp --coverage-clover=coverage.xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
fail_ci_if_error: true
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 1ff6df9

Please sign in to comment.