Skip to content

Commit

Permalink
Merge branch 'master' into barycenter_refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
zsteve authored Aug 24, 2021
2 parents 9d8d758 + 5354fb6 commit 6e14eda
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ jobs:
coverage: true
steps:
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: ${{ matrix.arch }}
# Limitation of pip: https://pythonot.github.io/index.html#pip-installation
- run: python -m pip install cython numpy
- run: python -m pip install pot
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand All @@ -48,7 +56,7 @@ jobs:
with:
coverage: ${{ matrix.coverage || false }}
env:
PYTHON: '' # Use Conda.jl also on Linux
PYTHON: python
GROUP: OptimalTransport
- uses: julia-actions/julia-processcoverage@v1
if: matrix.coverage
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: ${{ matrix.arch }}
# Limitation of pip: https://pythonot.github.io/index.html#pip-installation
- run: python -m pip install cython numpy
- run: python -m pip install pot
- uses: julia-actions/setup-julia@latest
with:
version: '1'
Expand All @@ -24,6 +32,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
PYTHON: '' # Use Conda.jl also on Linux
GKSwstype: nul # avoid (irrelevant) error messages from GR
shell: julia --color=yes --project=docs/ {0}

0 comments on commit 6e14eda

Please sign in to comment.