Skip to content

Initial commit: LLM inference benchmarking tool for OpenAI-compatible… #7

Initial commit: LLM inference benchmarking tool for OpenAI-compatible…

Initial commit: LLM inference benchmarking tool for OpenAI-compatible… #7

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Test
run: pytest
- name: Lint
run: ruff check src tests
- name: Type check
run: mypy src