Skip to content

Bumped version

Bumped version #119

Workflow file for this run

name: unit tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version}}
- name: Install tox
run: pip install tox tox-gh-actions
- name: Run the tests with tox
run: tox -r