From 5dfa48a89a305184d9646a950d6a45005fde4eba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= <72068105+Sandoun@users.noreply.github.com> Date: Sat, 17 Jun 2023 12:54:36 +0200 Subject: [PATCH] Update test-pipeline.yml --- .github/workflows/test-pipeline.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-pipeline.yml b/.github/workflows/test-pipeline.yml index 5084c09..0445a35 100644 --- a/.github/workflows/test-pipeline.yml +++ b/.github/workflows/test-pipeline.yml @@ -3,6 +3,11 @@ name: Test pipeline on: workflow_dispatch: workflow_call: + inputs: + cache-id: + default: 'test-results' + required: false + type: string push: branches: - main @@ -64,9 +69,14 @@ jobs: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - uses: actions/upload-artifact@v3 + with: + name: badge-combined + path: ./MewtocolTests/TestResults/badge_combined.svg + - name: Cache test results uses: actions/cache/save@v3 with: - key: coverage-data + key: ${{ inputs.cache-id }} path: | ${{ github.workspace }}/MewtocolTests/TestResults