We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ca5cd commit cba9727Copy full SHA for cba9727
1 file changed
.github/workflows/test.yml
@@ -48,17 +48,11 @@ 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: '3.9'
54
-
55
- - 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-
+ uses: actions/setup-python@v3
+ with:
+ python-version: ${{ matrix.python-version }}
+ cache: pip
+ cache-dependency-path: '**/requirements*.txt'
62
63
- name: Install Python dependencies
64
run: |
0 commit comments