Skip to content

Initial TPU recurrent kernel #3138

Initial TPU recurrent kernel

Initial TPU recurrent kernel #3138

name: Run tests that use ray
on: [push]
jobs:
ray_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Install uv and Python
uses: astral-sh/setup-uv@v6
with:
version: "0.7.20"
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --dev
- name: Test with pytest
run: |
PYTHONPATH=tests:src:. uv run pytest tests -m "ray" --durations=20