Skip to content

branch for 24.10.0 release #7

branch for 24.10.0 release

branch for 24.10.0 release #7

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
unit:
name: "Py:${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run unit tests
run: tox -e py