Skip to content

Update readme, add py310 and py311 #125

Update readme, add py310 and py311

Update readme, add py310 and py311 #125

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [['3.8', 'py38'], ['3.9', 'py39'], ['3.10', 'py310'], ['3.11', 'py311']]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version[0] }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version[0] }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test ${{ matrix.python-version[1] }} with tox
run: tox -e ${{ matrix.python-version[1] }}