Skip to content

Update supported Python versions #60

Update supported Python versions

Update supported Python versions #60

Workflow file for this run

name: Tests
on: [push]
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Unittests
run: |
export PYTHONPATH=./src
python -m unittest discover -v -s tests