Skip to content

Bump pydantic-settings from 2.1.0 to 2.2.1 #158

Bump pydantic-settings from 2.1.0 to 2.2.1

Bump pydantic-settings from 2.1.0 to 2.2.1 #158

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.5.1
- name: Install Taskfile
uses: arduino/setup-task@v1
with:
version: 3.x
- name: Install dependencies
run: poetry install
- name: Lint and format check
run: task fmt-check
- name: Test coverage with pytest
run: task cov
- name: Run mypy
run: task mypy