From 81408433afd1ec1de48567f4d435a71875225603 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Tue, 8 Jun 2021 13:16:34 +0200 Subject: [PATCH] try out booth coverage generator types --- .github/workflows/test.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e7323408..c38f86ffd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -262,7 +262,7 @@ jobs: ########################################################################## # COVERAGE CHECK BACKEND LOGIN-SERVER #################################### ########################################################################## - - name: backend | Coverage check + - name: backend login | Coverage check uses: webcraftmedia/coverage-check-action@master with: report_name: Coverage Backend @@ -335,11 +335,22 @@ jobs: ########################################################################## # COVERAGE CHECK BACKEND COMMUNITY-SERVER #################################### ########################################################################## - - name: backend | Coverage check + - name: backend community lcov | Coverage check uses: webcraftmedia/coverage-check-action@master with: report_name: Coverage Backend - type: phpunit + type: lcov + result_path: ./coverage/coverage.info + min_coverage: 8 + token: ${{ github.token }} + ######################################################################### + # COVERAGE CHECK BACKEND COMMUNITY-SERVER #################################### + ########################################################################## + - name: backend community simplecov | Coverage check + uses: webcraftmedia/coverage-check-action@master + with: + report_name: Coverage Backend + type: simplecov result_path: ./coverage/coverage.info min_coverage: 8 token: ${{ github.token }}