File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 29
29
coverage : true
30
30
steps :
31
31
- uses : actions/checkout@v2
32
+ - name : Install python
33
+ uses : actions/setup-python@v2
34
+ with :
35
+ python-version : ' 3.x'
36
+ architecture : ${{ matrix.arch }}
37
+ # Limitation of pip: https://pythonot.github.io/index.html#pip-installation
38
+ - run : python -m pip install cython numpy
39
+ - run : python -m pip install pot
32
40
- uses : julia-actions/setup-julia@v1
33
41
with :
34
42
version : ${{ matrix.version }}
48
56
with :
49
57
coverage : ${{ matrix.coverage || false }}
50
58
env :
51
- PYTHON : ' ' # Use Conda.jl also on Linux
59
+ PYTHON : python
52
60
GROUP : OptimalTransport
53
61
- uses : julia-actions/julia-processcoverage@v1
54
62
if : matrix.coverage
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v2
15
+ - name : Install python
16
+ uses : actions/setup-python@v2
17
+ with :
18
+ python-version : ' 3.x'
19
+ architecture : ${{ matrix.arch }}
20
+ # Limitation of pip: https://pythonot.github.io/index.html#pip-installation
21
+ - run : python -m pip install cython numpy
22
+ - run : python -m pip install pot
15
23
- uses : julia-actions/setup-julia@latest
16
24
with :
17
25
version : ' 1'
24
32
env :
25
33
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
26
34
DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
27
- PYTHON : ' ' # Use Conda.jl also on Linux
28
35
GKSwstype : nul # avoid (irrelevant) error messages from GR
29
36
shell : julia --color=yes --project=docs/ {0}
You can’t perform that action at this time.
0 commit comments