Skip to content

0.3.31 - Minor fixes for python updates #77

0.3.31 - Minor fixes for python updates

0.3.31 - Minor fixes for python updates #77

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [master, dev]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
shell: bash -l {0}
run: |
python3 -m pip install -r requirements.txt
python3 -m pip install -e . --no-deps --force-reinstall
- name: Run tests
run: |
python3 -m unittest