Skip to content

fix(deps): update dependency pydantic to v2.8.0 #888

fix(deps): update dependency pydantic to v2.8.0

fix(deps): update dependency pydantic to v2.8.0 #888

Workflow file for this run

name: "Run tests"
on:
push:
paths-ignore:
- '**.md'
workflow_call:
workflow_dispatch:
env:
PYTHON_VERSION: "3.10"
POETRY_VERSION: "1.4.2"
permissions:
contents: write
jobs:
test:
runs-on: windows-latest
steps:
- name: "πŸ›’ Checkout repository"
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
with:
fetch-depth: 0
- name: "πŸ“œ Install Poetry"
run: pipx install poetry
- name: "🐍 Install Python"
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: "poetry"
cache-dependency-path: poetry.lock
- name: "πŸ” Install dependencies"
run: poetry install --with dev
- name: "πŸ§ͺ Run tests"
run: |
poetry run poe test -- --verbose