Skip to content

docs: clarify agent planning workflow #41

docs: clarify agent planning workflow

docs: clarify agent planning workflow #41

Workflow file for this run

name: Lint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install ruff
run: pip install ruff==0.9.4
- name: Run ruff check
run: ruff check telefuser tests --output-format=full
- name: Run ruff format check
run: ruff format --check telefuser tests
- name: Check imports
run: ruff check --select I telefuser tests