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 4cef846 commit 1bf86e6Copy full SHA for 1bf86e6
.github/workflows/release.yml
@@ -35,7 +35,7 @@ jobs:
35
- name: Generate API docs
36
run: |
37
rm -rf ./docs/_build
38
- tox -e docs
+ ./venv/bin/python -m tox -e docs
39
- name: Upload docs
40
uses: actions/upload-artifact@v4
41
with:
.github/workflows/test.yml
@@ -49,9 +49,9 @@ jobs:
49
if: steps.restore-venv-cache.outputs.cache-hit != 'true'
50
51
python -m venv ./venv
52
- ./venv/bin/python -m pip install .
+ python -m pip install .
53
- name: Run test suite
54
- run: tox -e py
+ run: ./venv/bin/python -m tox -e py
55
- name: Cache virtualenv
56
uses: actions/cache/save@v4
57
0 commit comments