switch to Euclidean squared distance #119
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |