We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a9b570 commit 0059469Copy full SHA for 0059469
.github/workflows/ci-tests.yml
@@ -35,23 +35,13 @@ jobs:
35
- uses: actions/checkout@v3
36
37
- name: Set up Python
38
- if: matrix.py-ver-minor != 11
39
uses: actions/setup-python@v4
40
with:
41
python-version: ${{ env.py-semver }}
42
-
43
- - name: Set up Python 3.11.0-rc.2
44
- if: matrix.py-ver-minor == 11
45
- uses: actions/setup-python@v4
46
- with:
47
- python-version: 3.11.0-rc.2
48
49
50
- - name: Cache for pip
51
- uses: actions/cache@v3
52
53
- path: ~/.cache/pip
54
- key: ${{ runner.os }}-pip-${{ matrix.step }}-${{ hashFiles('requirements.txt', 'tox.ini') }}
+ cache: pip
+ cache-dependency-path: |
+ requirements.txt
+ tox.ini
55
56
- name: Upgrade setuptools and install tox
57
run: |
0 commit comments