Skip to content

Run CI on 3.10 and 3.11 #84

Run CI on 3.10 and 3.11

Run CI on 3.10 and 3.11 #84

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup dependencies
run: pip install -r test_requirements.txt
- name: Setup tox
run: pip install tox tox-gh-actions
- name: Run tests
run: tox