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 221afaf commit 44dcdadCopy full SHA for 44dcdad
.github/workflows/tests.yml
@@ -42,14 +42,12 @@ jobs:
42
43
- name: get pip cache dir
44
id: pip-cache
45
- run: echo "::set-output name=dir::$(pip cache dir)"
46
-
+ run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
47
- name: cache pip dependencies
48
uses: actions/cache@v3
49
with:
50
path: ${{ steps.pip-cache.outputs.dir }}
51
key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}
52
53
- run: pip install tox
54
- run: tox -e ${{ matrix.tox }}
55
- name: Upload coverage.xml
0 commit comments