Skip to content

Test with stable Python 3.12 #25

Test with stable Python 3.12

Test with stable Python 3.12 #25

Workflow file for this run

name: Testing
on: push
jobs:
build:
strategy:
matrix:
python-version: ['3.8', '3.10', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
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