Skip to content

build(deps): bump slack-sdk from 3.40.0 to 3.40.1 in /pydantic-ai #36

build(deps): bump slack-sdk from 3.40.0 to 3.40.1 in /pydantic-ai

build(deps): bump slack-sdk from 3.40.0 to 3.40.1 in /pydantic-ai #36

Workflow file for this run

name: Linting and formatting validation using ruff
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
directory:
- openai-agents-sdk
- pydantic-ai
- claude-agent-sdk
defaults:
run:
working-directory: ${{ matrix.directory }}
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt
- name: Lint and check formatting with ruff
run: |
ruff check .
ruff format --check .