Add LiquidAI LFM2.5-Embedding-350M and LFM2.5-ColBERT-350M models #3902
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: Typechecking | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| enable-cache: true | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: | | |
| make install-for-tests | |
| - name: Run typecheck | |
| run: | | |
| make typecheck |