Skip to content

Fix numba wasserstein #11

Fix numba wasserstein

Fix numba wasserstein #11

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y pandoc
pip install --upgrade pip flit
flit install -s
- name: Unit test
run: |
(cd test && python test.py)
- name: Build documentation
run: |
sphinx-build -b html docs docs/_build