Skip to content

LoRA support in vllm and hf backends #261

LoRA support in vllm and hf backends

LoRA support in vllm and hf backends #261

Workflow file for this run

name: Codebase tests
on:
pull_request:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-python@v4
with:
python-version: 3.11.5
cache: 'pip'
- name: Run Tests
run: |
python -m venv venv
source venv/bin/activate
pip install -e .[test,lora]
pip install -r requirements-dev.txt
python -m pytest tests --ignore=tests/test_mlx.py