|
6 | 6 | if:github.event.push || github.event.pull_request.head.repo.full_name != github.repository |
7 | 7 | runs-on:ubuntu-latest |
8 | 8 | strategy: |
| 9 | +fail-fast:false |
9 | 10 | matrix: |
10 | | -python:[2.7,3.5,3.6,3.7,3.8,pypy-2.7, pypy3] |
| 11 | +python:["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-2.7", "pypy-3.8"] |
11 | 12 | steps: |
12 | | - -uses:actions/checkout@v2 |
| 13 | + -uses:actions/checkout@v3 |
13 | 14 | with: |
14 | 15 | submodules:true |
15 | | - -uses:actions/setup-python@v2 |
| 16 | + -uses:actions/setup-python@v4 |
16 | 17 | with: |
17 | 18 | python-version:${{ matrix.python }} |
| 19 | +cache:pip |
| 20 | +cache-dependency-path:"requirements*.txt" |
18 | 21 | -run:pip install tox |
19 | 22 | -run:tox -e py |
20 | 23 | -if:${{ always() }} |
|