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
Copy file name to clipboardExpand all lines: .travis.yml
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ os:
7
7
julia:
8
8
- 0.6
9
9
- 0.7
10
+
- 1.0
10
11
- nightly
11
12
12
13
# # Uncomment the following lines to allow failures on nightly julia
@@ -23,5 +24,16 @@ notifications:
23
24
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Example"); Pkg.test("Example"; coverage=true)';
24
25
25
26
after_success:
26
-
- julia -e 'cd(Pkg.dir("Example")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
27
-
# - julia -e 'cd(Pkg.dir("Example")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())';
27
+
- julia -e 'if VERSION >= v"0.7.0-" using Pkg end; cd(Pkg.dir("Example")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
28
+
# - julia -e 'if VERSION >= v"0.7.0-" using Pkg end; cd(Pkg.dir("Example")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())';
29
+
30
+
jobs:
31
+
include:
32
+
- stage: "Documentation"
33
+
julia: 1.0
34
+
os: linux
35
+
script:
36
+
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
0 commit comments