Skip to content

Commit e1f5604

Browse files
Create .travis.yml
1 parent 3172e47 commit e1f5604

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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())'

0 commit comments

Comments
 (0)