Skip to content

chore(deps): bump the python group with 3 updates #1428

chore(deps): bump the python group with 3 updates

chore(deps): bump the python group with 3 updates #1428

Workflow file for this run

name: Python package
on:
workflow_dispatch: {}
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v7
- name: Install the project
env:
UV_PYTHON: ${{ matrix.python-version }}
run: uv sync --all-extras --dev
- name: Lint and test
env:
UV_PYTHON: ${{ matrix.python-version }}
run: make -k lint test