Skip to content

chore: deps update

chore: deps update #8

Workflow file for this run

name: Tests
on:
push:
branches:
- main
paths:
- '**.py'
- '**.json'
- '**.md'
- '**.yml'
- '**.toml'
- 'uv.lock'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run pre-commit hooks
run: uv run pre-commit run --all-files