Skip to content

switch to Euclidean squared distance #119

switch to Euclidean squared distance

switch to Euclidean squared distance #119

name: Python build and test on push + pull request
on:
push:
branches: [main]
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
branches: [main]
paths-ignore:
- "docs/**"
- "**.md"
jobs:
test:
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
env:
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install ".[dev]"
# - name: Run mypy
# run: mypy . --ignore-missing-imports
- name: Validate formatting
run: |
black python --check
# - name: Run tests