Skip to content

feat: log Slack MCP Server connect URL on startup #227

feat: log Slack MCP Server connect URL on startup

feat: log Slack MCP Server connect URL on startup #227

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 .