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 25
25
Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
26
26
'
27
27
- 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()'
29
33
- name : Build and deploy
30
34
env :
31
35
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
37
41
token : ${{ secrets.CODECOV_TOKEN }}
38
42
file : lcov.info
39
43
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