Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored May 21, 2022
1 parent 399125a commit f9234d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
pip install -c .constraints/py${{ matrix.python-version }}.txt -e .[test]
- name: Test with pytest-cov
run: pytest --cov=ampform --cov-report=xml
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test_output_${{ matrix.os }}_${{ matrix.python-version }}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
pip install -c .constraints/py${{ matrix.python-version }}.txt -e .[test]
- name: Run unit tests and doctests with pytest
run: pytest -n auto
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test_output_${{ matrix.os }}_${{ matrix.python-version }}
Expand All @@ -105,7 +105,7 @@ jobs:
pip install -c .constraints/py${{ matrix.python-version }}.txt -e .[test]
- name: Run slow tests
run: pytest -n auto -m slow
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test_output_slow
Expand Down

0 comments on commit f9234d7

Please sign in to comment.