Skip to content

fix(renovate): handle uv/pep621 deps like poetry deps before #561

fix(renovate): handle uv/pep621 deps like poetry deps before

fix(renovate): handle uv/pep621 deps like poetry deps before #561

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install tooling
uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2
- name: Switch to Python ${{ matrix.python-version }}
run: "mise use python@${{ matrix.python-version }}"
- name: Install dependencies
run: "uv sync"
- name: Lint
run: "uv run poe lint"
- name: Test with pytest
run: "uv run poe test"