Skip to content

fix: python^=3.11

fix: python^=3.11 #3

Workflow file for this run

on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install self
run: pip install -e .
- name: Run tests
run: |
cd tests
python -m unittest discover