build(deps): bump pydantic from 2.12.5 to 2.13.0 #13349
Workflow file for this run
This file contains hidden or 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
| # This is a basic workflow to help you get started with Actions | |
| name: CI | |
| # Controls when the action will run. | |
| on: | |
| push: | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| validate-yaml: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' | |
| cache-dependency-path: 'requirements-dev.txt' | |
| - name: Install Python packages | |
| run: | | |
| pip install -r requirements-dev.txt | |
| - name: Run YAML config validation | |
| run: | | |
| make validate-yaml | |
| lint: | |
| runs-on: ubuntu-slim | |
| name: Lint | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| cache: 'pip' | |
| - name: Install ruff | |
| run: | | |
| pip install ruff | |
| - name: Ruff lint | |
| run: ruff check . | |
| - name: Ruff format | |
| run: ruff format --check --diff . |