Skip to content

Commit

Permalink
Enable testing with py311
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Jul 15, 2022
1 parent 6688a6f commit 9c71217
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ on:

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"]
os: [ubuntu-latest, windows-latest]
python: ["3.7", "3.8", "3.9", "3.10","~3.11.0-0", "pypy-3.8"]
os:
- ubuntu-latest
- windows-latest
include:
- python: "3.7"
tox_env: "py37"
Expand All @@ -26,22 +28,24 @@ jobs:
tox_env: "py39"
- python: "3.10"
tox_env: "py310"
- python: "~3.11.0-0" # see https://github.com/actions/setup-python/issues/213#issuecomment-1146676713
tox_env: py311
- python: "pypy-3.8"
tox_env: "pypy3"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Cache tox environments
uses: actions/cache@v3
with:
path: .tox
key: tox-${{ matrix.os }}-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}
- name: Test
run: tox -e ${{ matrix.tox_env }}
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Cache tox environments
uses: actions/cache@v3
with:
path: .tox
key: tox-${{ matrix.os }}-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}
- name: Test
run: tox -e ${{ matrix.tox_env }}

0 comments on commit 9c71217

Please sign in to comment.