Skip to content

Expand MTEB(kor, v1) with retrieval/STS/NLI/clustering tasks + register 9 Korean models #1997

Expand MTEB(kor, v1) with retrieval/STS/NLI/clustering tasks + register 9 Korean models

Expand MTEB(kor, v1) with retrieval/STS/NLI/clustering tasks + register 9 Korean models #1997

Workflow file for this run

# This workflow will:
# 1) install Python dependencies
# 2) run make test
name: Test lowest dependencies
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Cache Hugging Face
id: cache-hf
uses: actions/cache@v5
with:
path: ~/.cache/huggingface
key: ${{ runner.os }}-lowest-hf
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v8.2.0
with:
enable-cache: true
python-version: "3.10"
- name: Install dependencies
shell: bash
run: |
uv venv --python 3.10
# with uv sync conflict with flash-attn
uv pip install -e . --resolution lowest-direct --group test
- name: Run tests
shell: bash
run: |
make test