Skip to content

remove git hash installations #362

remove git hash installations

remove git hash installations #362

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- "main"
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
name: pytest ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ github.token }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.22"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Installing distribution (dev mode)
# this adds the .so to the inner lib files so we can test
run: |
uv run --no-project ./setup.py develop
- name: Run tests
shell: bash
run: |
uv venv
uv pip install pytest
uv run --no-project pytest