refactor(docs): deep code analysis engine with 5 supporting modules #71
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: pyqual run | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "0 3 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Create virtualenv | |
| run: python -m venv .venv | |
| - name: Install dependencies | |
| run: | | |
| .venv/bin/python -m pip install --upgrade pip | |
| .venv/bin/pip install -e ".[dev,prellm-full]" build twine | |
| - name: Run tests with verbose output | |
| run: | | |
| .venv/bin/python -m pytest --cov=llx --cov-report=json:.pyqual/coverage.json -v --tb=short | |
| - name: Run pyqual | |
| run: .venv/bin/pyqual run --config pyqual.yaml --workdir . | |
| env: | |
| OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY || 'dummy-key-for-ci' }} |