From 435d3887c958666e2163076ccbe158b2c00a3442 Mon Sep 17 00:00:00 2001 From: Dick Wolff Date: Sat, 10 Feb 2024 10:53:34 +0100 Subject: [PATCH] Publish code coverage results to gist --- .github/workflows/frameworkTesting.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/frameworkTesting.yml b/.github/workflows/frameworkTesting.yml index ba231345..06ccba7d 100644 --- a/.github/workflows/frameworkTesting.yml +++ b/.github/workflows/frameworkTesting.yml @@ -13,7 +13,7 @@ on: - main paths: - "src/**" - - ".github/workflows/**" + - ".github/workflows/**" #remove later jobs: run-tests: @@ -57,4 +57,11 @@ jobs: hide_branch_rate: true hide_complexity: true badge: true - output: 'console' \ No newline at end of file + output: 'file' + + - name: Publish code coverage results + uses: exuanbo/actions-deploy-gist@v1 + with: + token: ${{ secrets.GIST_SECRET }} + gist_id: 36ad591681898e170d7fe636cd88b816 + file_path: code-coverage-results.txt \ No newline at end of file