Skip to content

Update pydantic-settings requirement from ~=2.6.0 to ~=2.7.0 (#117) #105

Update pydantic-settings requirement from ~=2.6.0 to ~=2.7.0 (#117)

Update pydantic-settings requirement from ~=2.6.0 to ~=2.7.0 (#117) #105

Workflow file for this run

name: Lint
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
concurrency: lint-${{ github.sha }}
jobs:
lint:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: "3.11"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: uv sync --all-extras --group dev
- name: Run pre-commit hooks
uses: pre-commit/[email protected]