8000
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 6e8bf4d commit 2c3b98cCopy full SHA for 2c3b98c
ā.github/workflows/test.ymlā
@@ -19,13 +19,17 @@ jobs:
19
- uses: actions/checkout@v3
20
- name: Set up Python
21
uses: actions/setup-python@v4
22
- id: setup-python
23
with:
24
python-version: ${{ matrix.python-version }}
25
cache: "pip"
26
cache-dependency-path: pyproject.toml
+ - uses: actions/cache@v3
27
+ id: cache
28
+ with:
29
+ path: ${{ env.pythonLocation }}
30
+ key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-test-v02
31
- name: Install Dependencies
- if: steps.setup-python.outputs.cache-hit != 'true'
32
+ if: steps.cache.outputs.cache-hit != 'true'
33
run: pip install -e .[all,dev,doc,test]
34
# Allow debugging with tmate
35
- name: Setup tmate session
0 commit comments