We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739f83b commit 5adadbfCopy full SHA for 5adadbf
.github/workflows/publish-pipeline.yml
@@ -62,9 +62,11 @@ jobs:
62
asset_content_type: application/zip
63
64
- name: Load cached test results
65
- uses: actions/cache@v3
+ uses: actions/cache/restore@v3
66
with:
67
- restore-keys: coverage-xml
+ key: coverage-xml
68
+ path: |
69
+ '${{ github.workspace }}/MewtocolTests/coverage.opencover.xml'
70
71
- name: 'Upload coverage xml to latest release'
72
uses: actions/upload-release-asset@v1
.github/workflows/test-pipeline.yml
@@ -50,7 +50,7 @@ jobs:
50
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
51
52
- name: Cache test results
53
+ uses: actions/cache/save@v3
54
55
key: coverage-xml
56
path: |
0 commit comments