Skip to content

Bump tox from 4.18.1 to 4.19.0 (#127) #328

Bump tox from 4.18.1 to 4.19.0 (#127)

Bump tox from 4.18.1 to 4.19.0 (#127) #328

Workflow file for this run

---
name: Python tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 5
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13-dev"]
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