Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI failure #51

Merged
merged 4 commits into from
Feb 20, 2023
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: CI

env:
PYTHON: Conda
# remove next line (and others marked below) when #42 properly resolved
LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib
# uncomment the line below when #42 comes up again
# LD_LIBRARY_PATH: /home/runner/.julia/conda/3/x86_64/lib

on:
pull_request:
Expand Down Expand Up @@ -46,11 +46,11 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
# remove next four lines (and one other marked above) when #42 properly resolved
- name: "Install Conda"
run: julia -e 'using Pkg; Pkg.add("Conda");'
- name: "Install Scikit-learn"
run: cd $LD_LIBRARY_PATH
# uncomment the next four lines (and one other marked above) when #42 comes up again.
#- name: "Install Conda"
# run: julia -e 'using Pkg; Pkg.add("Conda");'
#- name: "Install Scikit-learn"
# run: cd $LD_LIBRARY_PATH
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
Expand Down