Skip to content

Merge pull request #69 from amrit110/chore/numpy-docstrings #110

Merge pull request #69 from amrit110/chore/numpy-docstrings

Merge pull request #69 from amrit110/chore/numpy-docstrings #110

Workflow file for this run

name: tests
"on":
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: uv pip install --system -e ".[dev,full]"
- name: Run tests
run: |
python -m pytest -v -n auto