Skip to content

Bump pydantic-settings from 2.0.0 to 2.0.1 #192

Bump pydantic-settings from 2.0.0 to 2.0.1

Bump pydantic-settings from 2.0.0 to 2.0.1 #192

Workflow file for this run

name: Run Tests
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install Tests
run: make install-all
- name: Run Tests
run: make test