Skip to content

Commit e014006

Browse files
committed
Fix CI.yml
1 parent 64f059b commit e014006

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,13 @@ jobs:
7373
- uses: actions/checkout@v4
7474
- uses: julia-actions/setup-julia@v2
7575
- name: Install Conda
76-
run: julia --project=docs/ -e 'ENV["PYTHON"]=""; using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build("PyCall"); Pkg.add(Conda); using Conda; println("---> 1"); Pkg.add(PyPlot); using PyPlot; println("---> 2")'
76+
run: julia --project=docs/ -e 'ENV["PYTHON"]=""; using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build("PyCall"); ; println("---> 2"); Pkg.add("PyPlot"); println("---> 3"); using PyPlot; println("---> 4")'
7777
shell: bash
7878
- uses: julia-actions/cache@v2
7979
- uses: julia-actions/julia-buildpkg@v1
8080
- uses: julia-actions/julia-docdeploy@v1
8181
env:
8282
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8383
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
84-
- run: |
85-
julia --project=docs -e 'ENV["PYTHON"]=""; println("---> 3");
86-
using Documenter: DocMeta, doctest
87-
using VortexStepMethod
88-
DocMeta.setdocmeta!(VortexStepMethod, :DocTestSetup, :(using VortexStepMethod); recursive=true)
89-
doctest(VortexStepMethod)'
84+
9085

0 commit comments

Comments
 (0)