Bump pydantic-settings from 2.5.2 to 2.7.1 #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - Check Formatting | |
on: | |
push: | |
jobs: | |
lint: | |
name: "Check Formatting" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: "poetry" | |
- name: Install root project | |
run: poetry install --no-interaction | |
- name: Lint | |
run: poetry run task lint | |