From 01d58ea6a07da2ec3d1641eb9e39d4cd2dfd6196 Mon Sep 17 00:00:00 2001 From: Bartosz Wojciechowski Date: Wed, 23 Nov 2022 19:16:23 +0100 Subject: [PATCH 1/3] TEST --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2ec6b8..7de1c27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - category: [static, unit, widget] + category: [unit] fail-fast: false steps: - name: Clone the repository @@ -95,9 +95,13 @@ jobs: name: code-coverage path: coverage - name: Report code coverage - uses: zgosalvez/github-actions-report-lcov@49af65b0586c274a625a41a2dc8aaaae7d00568b + id: coverage + uses: bartosz347/github-actions-report-lcov@3d5a5de3a7daecf2a8533d8f389c6979f6230e85 with: coverage-files: coverage/lcov.*.info minimum-coverage: 90 artifact-name: code-coverage-report github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Print output coverage + run: echo "Coverage: ${{ steps.coverage.outputs.total-coverage-percentage }}" + From ac3ef47978e9be0ed05f3fb5049a09d44b6aae47 Mon Sep 17 00:00:00 2001 From: Bartosz Wojciechowski Date: Tue, 29 Nov 2022 23:14:52 +0100 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7de1c27..8bf3462 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,5 +103,6 @@ jobs: artifact-name: code-coverage-report github-token: ${{ secrets.GITHUB_TOKEN }} - name: Print output coverage - run: echo "Coverage: ${{ steps.coverage.outputs.total-coverage-percentage }}" + run: | + echo "Coverage: ${{ steps.coverage.outputs.total-coverage-percentage }}" From 3ad5fba87721a469fac8da60b17f4498af1f8b8d Mon Sep 17 00:00:00 2001 From: Bartosz Wojciechowski Date: Mon, 23 Jan 2023 16:35:53 +0100 Subject: [PATCH 3/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bf3462..3a66062 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: path: coverage - name: Report code coverage id: coverage - uses: bartosz347/github-actions-report-lcov@3d5a5de3a7daecf2a8533d8f389c6979f6230e85 + uses: bartosz347/github-actions-report-lcov@fcd327a172f397f51efa452df253100bfd3eabec with: coverage-files: coverage/lcov.*.info minimum-coverage: 90