Skip to content

Commit 00ca5cd

Browse files
committed
Up
1 parent f0a1cdb commit 00ca5cd

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,17 @@ jobs:
4848
- uses: actions/checkout@v3
4949

5050
- name: Set up Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@v3
52-
with:
53-
python-version: ${{ matrix.python-version }}
54-
cache: pip
55-
cache-dependency-path: '**/requirements*.txt'
51+
uses: actions/setup-python@v3
52+
with:
53+
python-version: '3.9'
54+
55+
- name: Cache pip
56+
uses: actions/cache@v3
57+
with:
58+
path: ~/.cache/pip
59+
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
60+
restore-keys: |
61+
${{ runner.os }}-pip-
5662
5763
- name: Install Python dependencies
5864
run: |

0 commit comments

Comments
 (0)