File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
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
+ matrix :
10
+ allow_failures :
11
+ - julia : nightly
12
+ notifications :
13
+ email : false
14
+ # uncomment the following lines to override the default test script
15
+ # script:
16
+ # - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17
+ # - julia -e 'Pkg.clone(pwd()); Pkg.build("ArrayInterface"); Pkg.test("ArrayInterface"; coverage=true)'
18
+ after_success :
19
+ # push coverage results to Coveralls
20
+ - julia -e 'cd(Pkg.dir("ArrayInterface")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
21
+ # push coverage results to Codecov
22
+ - julia -e 'cd(Pkg.dir("ArrayInterface")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
You can’t perform that action at this time.
0 commit comments