You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- julia -e 'Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir("RandomMatrices"))`); Pkg.pin("RandomMatrices"); Pkg.resolve()'
17
+
- if [ $JULIAVERSION = "julianightlies" ]; then julia --code-coverage test/runtests.jl; fi
18
+
- if [ $JULIAVERSION = "juliareleases" ]; then julia test/runtests.jl; fi
19
+
after_success:
20
+
- if [ $JULIAVERSION = "julianightlies" ]; then julia -e 'cd(Pkg.dir("RandomMatrices")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; fi
0 commit comments