We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 285dc4b commit bfff948Copy full SHA for bfff948
.travis.yml
@@ -0,0 +1,23 @@
1
+## Documentation: http://docs.travis-ci.com/user/languages/julia/
2
+language: julia
3
+os:
4
+ - linux
5
+ - osx
6
+julia:
7
+ - 1.0
8
+ - nightly
9
+notifications:
10
+ email: false
11
+after_success:
12
+ # push coverage results to Coveralls
13
+ - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
14
+jobs:
15
+ include:
16
+ - stage: "Documentation"
17
+ julia: 1.0
18
+ os: linux
19
+ script:
20
+ - export DOCUMENTER_DEBUG=true
21
+ - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
22
+ - julia --project=docs/ docs/make.jl
23
+ after_succes: skip
0 commit comments