Skip to content

Update to use uv

Update to use uv #1002

Workflow file for this run

name: cryptofeed tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12', '3.13', '3.14']
steps:
- name: Install uv
uses: astral-sh/setup-uv@v7
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv pip install pytest cython
uv pip install -e .
- name: Test with pytest
run: |
pytest tests/