Skip to content

[Feat] Add Sinkhorn loss to tutorial, fixes in code, use POT instead … #4

[Feat] Add Sinkhorn loss to tutorial, fixes in code, use POT instead …

[Feat] Add Sinkhorn loss to tutorial, fixes in code, use POT instead … #4

Workflow file for this run

name: Python Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9]
steps:
- name: Check out the repository
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 .
- name: Run tests
run: |
pytest tests/