Skip to content

fix(deps): update all non-major dependencies #569

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #569

Workflow file for this run

name: Python package
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Update tools
run: python -m pip install --upgrade pip setuptools wheel pipx --user
- name: Install poetry
run: pipx install poetry
- name: Install tox
run: pipx install tox
- name: Test with tox
run: tox -e py${{ matrix.python-version }}