Skip to content

Fixup from last commit for compatibility with Python < 3.10. #115

Fixup from last commit for compatibility with Python < 3.10.

Fixup from last commit for compatibility with Python < 3.10. #115

Workflow file for this run

name: Run unittests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python setup.py 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