feat: implement new_session:true support for multi-turn task session … #222
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
| name: Lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| python-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install lint dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install ruff==0.15.6 pyyaml | |
| - name: Run Ruff | |
| run: ruff check . | |
| - name: Check argparse help strings | |
| run: python scripts/lint_argparse_help.py | |
| - name: Lint manifest | |
| run: python scripts/lint_manifest.py |