Skip to content

Commit

Permalink
馃悰 Re-enable CI cache again
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo committed Nov 27, 2022
1 parent 6e8bf4d commit 2c3b98c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -19,13 +19,17 @@ jobs:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
id: setup-python
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: pyproject.toml
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-test-v02
- name: Install Dependencies
if: steps.setup-python.outputs.cache-hit != 'true'
if: steps.cache.outputs.cache-hit != 'true'
run: pip install -e .[all,dev,doc,test]
# Allow debugging with tmate
- name: Setup tmate session
Expand Down

0 comments on commit 2c3b98c

Please sign in to comment.