Update runner version.

Support wildcard artifact storage.
This commit is contained in:
Nathan Baker
2020-06-20 08:17:17 -07:00
parent 4fd012cb57
commit 151125b18c

View File

@@ -41,12 +41,12 @@ jobs:
coverage report -m | tee coverage.txt coverage report -m | tee coverage.txt
coverage html coverage html
- name: Store coverage text results - name: Store coverage text results
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v2
with: with:
name: coverage-text name: coverage-text
path: coverage.txt path: coverage.txt
- name: Store coverage HTML results - name: Store coverage HTML results
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v2
with: with:
name: coverage-html name: coverage-html
path: htmlcov/* path: htmlcov/*