Skip to content

update history for 5.0.2 #79

update history for 5.0.2

update history for 5.0.2 #79

Workflow file for this run

name: unit tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
name: Python ${{ matrix.python_version }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: pip install tox tox-gh-actions
- name: Run tox
run: tox