We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a1cdb commit 00ca5cdCopy full SHA for 00ca5cd
1 file changed
.github/workflows/test.yml
@@ -48,11 +48,17 @@ jobs:
48
- uses: actions/checkout@v3
49
50
- 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'
+ uses: actions/setup-python@v3
+ with:
+ python-version: '3.9'
+
+ - name: Cache pip
56
+ uses: actions/cache@v3
57
58
+ path: ~/.cache/pip
59
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
60
+ restore-keys: |
61
+ ${{ runner.os }}-pip-
62
63
- name: Install Python dependencies
64
run: |
0 commit comments