Skip to content

v0.11.0

v0.11.0 #255

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- test-me-*
tags:
- '*'
jobs:
build:
name: Python ${{ matrix.python-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -VV
python -m pip install --upgrade pip
python -m pip install tox
- name: Test with tox for ${{ matrix.python-version }}
run: python -m tox -e py