Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/check_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
PYTHON: Conda
# remove next line (and others marked below) when
# JuliaAI/MLJScikitLearnInterface.jl#42 properly resolved
LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib
# LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib

steps:
- uses: actions/checkout@v2
Expand All @@ -45,14 +45,14 @@ jobs:

# remove next eight lines (and one other marked above) when
# JuliaAI/MLJScikitLearnInterface.jl#42 gets properly resolved
- name: "Install Conda"
run: julia -e 'using Pkg; Pkg.add("Conda");'
- name: "Install Scikit-learn"
run: |
julia -e 'using Conda; Conda.add("scikit-learn");'\
cd $LD_LIBRARY_PATH #just to check that the path is valid
#- name: "Install Conda"
# run: julia -e 'using Pkg; Pkg.add("Conda");'
#- name: "Install Scikit-learn"
# run: |
# julia -e 'using Conda; Conda.add("scikit-learn");'\
# cd $LD_LIBRARY_PATH #just to check that the path is valid

- run: julia -e 'using Pkg; Pkg.update()'
- run: julia -e 'using Pkg; Pkg.update()'
- run: julia -e 'using Pkg; Pkg.precompile()'
- run: julia -e 'using Pkg; Pkg.status()'
- run: julia -e 'using MLJModels; using Test; problems = MLJModels.check_registry(); @info("", length(problems), problems); @test(isempty(problems))'