Skip to content

Commit

Permalink
Pin artifact usage
Browse files Browse the repository at this point in the history
Pin to using the v2 of artifacts
Artifacts are now downloaded locally rather than in a folder
  • Loading branch information
greg-hellings committed Jun 3, 2020
1 parent 3f88d63 commit dd05e4d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pushes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
COVERAGE_FILE: .coverage.${{ matrix.python }}
- name: upload artifacts
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v2
with:
name: coverage-results
path: .coverage.${{ matrix.python }}
Expand All @@ -49,13 +49,12 @@ jobs:
- uses: actions/setup-python@master
with:
python-version: "3.x"
- uses: actions/download-artifact@master
- uses: actions/download-artifact@v2
with:
name: coverage-results
- name: run coverage
run: |
python -m pip install tox codecov
mv coverage-results/.coverage.* .
tox -e coverage
codecov -X pycov -X gcov
env:
Expand Down

0 comments on commit dd05e4d

Please sign in to comment.