diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0505337..54f5104 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt -r requirements-dev.txt + - name: Install Julia dependencies + run: julia -e 'import Pkg; Pkg.add("SDDP");Pkg.add("Clp");Pkg.add("JuMP");Pkg.add("PythonCall")' + - name: Test run: | pytest @@ -32,3 +35,5 @@ jobs: run: | python -m mypy src + + diff --git a/src/sddp.jl b/src/sddp.jl index a503946..79eefc3 100644 --- a/src/sddp.jl +++ b/src/sddp.jl @@ -1,11 +1,9 @@ module Jl_SDDP using SDDP -using HiGHS using Clp using JuMP using Base -using Xpress using PythonCall # Define types for structured data