Skip to content

more fixes for python3.11+ #13

more fixes for python3.11+

more fixes for python3.11+ #13

Workflow file for this run

name: Unit Tests
on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- synchronize
push:
branches:
- master
jobs:
test:
name: Python Version Gauntlet
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@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run Unit Tests
run: |
pytest