Skip to content

chore(deps): update dependency astral-sh/uv to v0.8.22 #21

chore(deps): update dependency astral-sh/uv to v0.8.22

chore(deps): update dependency astral-sh/uv to v0.8.22 #21

# 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: Python Tests
on:
push:
branches: [ "main", "rename-package" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
version: 0.8.17
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
# For example, using `pytest`
run: uv run pytest tests