Skip to content

Use Case Specific Datasets (#6) #22

Use Case Specific Datasets (#6)

Use Case Specific Datasets (#6) #22

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- "v*"
pull_request:
jobs:
pytest:
name: Unit Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ github.workspace }}/llm-benchmark
strategy:
matrix:
python-version: ["3.11.x", "3.12.x"]
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}/llm-benchmark
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r tests/requirements.txt
- name: Run Tests
run: pytest