mirror of
https://github.com/datalab-to/chandra.git
synced 2026-02-10 08:10:40 +00:00
Initial benchmarks
This commit is contained in:
28
.github/workflows/integration.yml
vendored
Normal file
28
.github/workflows/integration.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: Marker Plus CI tests
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: t4_gpu
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install apt requirements
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 libgdk-pixbuf2.0-0 libcairo2 libffi-dev shared-mime-info
|
||||
- name: Set up Python 3.12
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.12
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v7
|
||||
- name: Install python dependencies
|
||||
run: |
|
||||
uv sync --group dev
|
||||
- name: Run tests
|
||||
env:
|
||||
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
||||
PYTHONPATH: .
|
||||
run: |
|
||||
uv run pytest tests/integration
|
||||
Reference in New Issue
Block a user