Update readthedocs Qwix Offline Quantization documentation to cover full-precision training and inference. #357
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: Type check | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| # Give every push its own group so main runs are never queued behind or | |
| # cancelled by other runs. PR runs share a per-PR group so superseded | |
| # commits are cancelled. | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.pull_request.number) || github.run_id }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| pyrefly: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| cache: pip | |
| cache-dependency-path: pyproject.toml | |
| - name: Install package and pyrefly | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . pyrefly | |
| - name: Run pyrefly | |
| run: pyrefly check qwix/ |