Skip to content

Commit

Permalink
Enable pip caching for GitHub Actions
Browse files Browse the repository at this point in the history
Enable pip caching in order to avoid repeatedly rebuilding all
the PyPy wheels for source packages.  This is inspired by discussion
in psf/requests#6496 and it may help with
the PyPy CI failures.
  • Loading branch information
mgorny committed Aug 13, 2023
1 parent c62ab87 commit a316931
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install .
Expand Down

0 comments on commit a316931

Please sign in to comment.