Skip to content

Fix GlobalFrechet normalization #25

Fix GlobalFrechet normalization

Fix GlobalFrechet normalization #25

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff==0.0.272 pytest==7.2.2
python3 -m pip install .[all]
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
make lint
- name: Test with pytest
run: |
make test