Skip to content

Commit

Permalink
ci(github-actions): fix package dev workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Sep 17, 2024
1 parent 74f214c commit 51ea0df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI_BracketingNonlinearSolve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@ jobs:
import Pkg
Pkg.Registry.update()
# Install packages present in subdirectories
dev_pks = Pkg.PacakgeSpec[]
for path in ("lib/NonlinearSolveBase",)
Pkg.develop(; path)
push!(dev_pks, Pkg.PackageSpec(; path))
end
Pkg.develop(dev_pks)
Pkg.instantiate()
Pkg.test(; coverage=true)
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/BracketingNonlinearSolve {0}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/CI_SimpleNonlinearSolve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,11 @@ jobs:
import Pkg
Pkg.Registry.update()
# Install packages present in subdirectories
dev_pks = Pkg.PacakgeSpec[]
for path in ("lib/NonlinearSolveBase", "lib/BracketingNonlinearSolve")
Pkg.develop(; path)
push!(dev_pks, Pkg.PackageSpec(; path))
end
Pkg.develop(dev_pks)
Pkg.instantiate()
Pkg.test(; coverage=true)
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/SimpleNonlinearSolve {0}
Expand Down

0 comments on commit 51ea0df

Please sign in to comment.