We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb09323 commit fd3eea6Copy full SHA for fd3eea6
.travis.yml
@@ -5,6 +5,7 @@ os:
5
julia:
6
- 1.0
7
- 1.1
8
+ - 1.2
9
- nightly
10
notifications:
11
email: false
@@ -13,5 +14,14 @@ matrix:
13
14
- julia: nightly
15
after_success:
16
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
-# - julia -e 'ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps)'
17
-# - julia -e 'cd(Pkg.dir("Bridge")); include(joinpath("docs", "make.jl"))'
+jobs:
18
+ include:
19
+ - stage: "Documentation"
20
+ julia: 1.2
21
+ os:
22
+ - linux
23
+ script:
24
+ - julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
25
+ Pkg.develop(PackageSpec(path=pwd()))'
26
+ - julia --project=docs/ docs/make.jl
27
+ after_success: skip
0 commit comments