Skip to content

Add Python 3.11 to test matrix #9

Add Python 3.11 to test matrix

Add Python 3.11 to test matrix #9

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: python -m pip install -r tests/requirements.txt
- name: Run tests
run: make test