Skip to content

Commit

Permalink
added pip cache
Browse files Browse the repository at this point in the history
  • Loading branch information
pyprism committed Jul 15, 2024
1 parent df7a9c3 commit 7f49ffe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4

- name: Install dependencies
run: pip install -r requirements.txt
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-

0 comments on commit 7f49ffe

Please sign in to comment.