Skip to content

Feat/use vllm server #190

Feat/use vllm server

Feat/use vllm server #190

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
jobs:
lint:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, self-hosted-ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/ruff-check@main
pytest:
if: github.event.pull_request.draft == false
strategy:
matrix:
os: [self-hosted-ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.8.2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Log disk space
run: df -h
- name: Install Dependencies
run: |
poetry env use "${{ matrix.python-version }}"
poetry install
- name: Test with pytest
run: poetry run pytest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}