Skip to content

WIP: Add JIT-ed UL2R functions #7030

WIP: Add JIT-ed UL2R functions

WIP: Add JIT-ed UL2R functions #7030

name: Run entry tests
on: [push, pull_request]
jobs:
entry_tests:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
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 "entry" --durations=20