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 1635212 commit a76383eCopy full SHA for a76383e
.github/workflows/ci.yml
@@ -38,10 +38,21 @@ jobs:
38
uses: actions/[email protected]
39
with:
40
python-version: ${{ matrix.python }}
41
+ - name: Restore base Python virtual environment
42
+ id: cache-venv
43
+ uses: actions/[email protected]
44
+ with:
45
+ path: venv
46
+ key: >-
47
+ ${{ runner.os }}-${{ matrix.python }}-venv-hashFiles('pyproject.toml')-hashFiles('.pre-commit-config.yaml')
48
+ - name: Create venv (NEW CACHE)
49
+ if: steps.cache-venv.outputs.cache-hit != 'true'
50
+ run: |
51
+ python -m venv venv
52
+ . venv/bin/activate
53
+ python --version
54
+ pip install -e ".[all]"
55
-
- # - run: pip install -e ".[all]"
56
# - name: Linter codespell
57
# run: codespell
58
# - name: Linter pylint
0 commit comments