fix: add missing __future__ import to report_generator.py for Python 3.9 #129
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 quality gates | |
| on: [push, pull_request] | |
| jobs: | |
| quality-loop: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: {fetch-depth: 0} | |
| - uses: actions/setup-python@v5 | |
| with: {python-version: "3.11"} | |
| - uses: actions/setup-node@v4 | |
| with: {node-version: "20"} | |
| - name: Install pyqual + tools | |
| run: | | |
| pip install -e . | |
| npm install -g @anthropic-ai/claude-code || true | |
| - name: Run quality gate loop | |
| run: pyqual run --config pyqual.yaml | |
| env: | |
| LLM_MODEL: ${{ secrets.LLM_MODEL || 'openrouter/qwen/qwen3-coder-next' }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} | |
| - name: Upload metrics | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pyqual-metrics | |
| path: .pyqual/ |