Skip to content

Update Dockerfile to Python 3.11.0 #547

Update Dockerfile to Python 3.11.0

Update Dockerfile to Python 3.11.0 #547

Workflow file for this run

name: Run unittests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Run unittests
run: |
python tests/unit_tests.py
python tests/field_tests.py
python tests/csv_id_to_node_id_map_tests.py