Skip to content

Commit bfff948

Browse files
committed
Added travis for code coverage and test
1 parent 285dc4b commit bfff948

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)