File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 2525 Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
2626 '
2727 - name : Install dependencies
28- run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
28+ run : julia --project=docs/ -e '
29+ using Pkg;
30+ Pkg.develop(PackageSpec(path=pwd()));
31+ Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
32+ Pkg.instantiate()'
2933 - name : Build and deploy
3034 env :
3135 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
3741 token : ${{ secrets.CODECOV_TOKEN }}
3842 file : lcov.info
3943 fail_ci_if_error : true
44+
45+
46+ function f(x, y=begin x[1] = 1.0; x end)
47+ x[2] = 2.0
48+ x, y
49+ end
50+ f(zeros(2))
You can’t perform that action at this time.
0 commit comments