Skip to content

v1.16.2 - fix python version in publish #217

v1.16.2 - fix python version in publish

v1.16.2 - fix python version in publish #217

Workflow file for this run

name: Unit Test
on: [push, pull_request]
jobs:
unittest:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Unit Test
run: |
cd tests
python -m pytest .