Skip to content

Test with Python 3.13 #29

Test with Python 3.13

Test with Python 3.13 #29

Workflow file for this run

name: Testing
on: push
jobs:
build:
strategy:
matrix:
python-version: ['3.8', '3.10', '3.13']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: pip install -r requirements-dev.txt
- name: Lint
run: pyflakes .
- name: Unit tests
run: python -m unittest discover ./test