Skip to content

chore: bump pydantic from 2.5.1 to 2.5.2 #276

chore: bump pydantic from 2.5.1 to 2.5.2

chore: bump pydantic from 2.5.1 to 2.5.2 #276

name: GitHub Action
on:
push:
pull_request:
release:
types: [ created ]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .
- name: Test with unittest
run: python -m unittest