Skip to content

Bump version to 15.2.1: #1

Bump version to 15.2.1:

Bump version to 15.2.1: #1

Workflow file for this run

name: unittests
on:
push:
branches:
- main
- v14
pull_request:
branches:
- main
- v14
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13.0-rc.3"]
include:
# set toxenv to workaround-darwin on macos (check tox.ini)
- toxenv: py
- os: macos-13
toxenv: workaround-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run Tests
run: |
pip install tox
tox -e ${{ matrix.toxenv }}