Skip to content

Bump pydantic from 2.8.2 to 2.9.0 #158

Bump pydantic from 2.8.2 to 2.9.0

Bump pydantic from 2.8.2 to 2.9.0 #158

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
- 'release/**'
- 'hotfix/**'
- 'support/**'
pull_request:
branches:
- main
- develop
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies.
run: poetry install
- name: Run tests.
run: poetry run pytest