Skip to content

Merge pull request #5 from okken/release-0.0.8 #22

Merge pull request #5 from okken/release-0.0.8

Merge pull request #5 from okken/release-0.0.8 #22

Workflow file for this run

name: Build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_COLOR: "1"
TOX_TESTENV_PASSENV: FORCE_COLOR
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py