Skip to content

Bump tox from 4.22.0 to 4.23.0 #343

Bump tox from 4.22.0 to 4.23.0

Bump tox from 4.22.0 to 4.23.0 #343

Workflow file for this run

---
name: Python tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
timeout-minutes: 5
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Test with tox
run: poetry run tox