Skip to content

feat: replace poetry with uv #711

feat: replace poetry with uv

feat: replace poetry with uv #711

Workflow file for this run

# This workflow will install Python dependencies, and run the tests for our project
name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.13"]
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install uv
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v6.4.1
- name: Install the project
run: uv sync --locked --group dev --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest tests