docs: add Camel AI integration documentation #693
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: Tach Check | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '**/*.py' | |
- '**/*.ipynb' | |
jobs: | |
tach-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v4 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "**/pyproject.toml" | |
- name: Install dependencies | |
run: | | |
uv sync --group ci | |
- name: Run Tach | |
run: uvx tach check |