Skip to content

Commit 517b16b

Browse files
committed
add Travis
1 parent 4fc4ec2 commit 517b16b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
- 1.1
9+
- nightly
10+
matrix:
11+
allow_failures:
12+
- julia: nightly
13+
notifications:
14+
email: false
15+
after_success:
16+
- julia -e 'using Pkg; cd(Pkg.dir("ContinuumArrays")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
17+
18+
# uncomment the following lines to override the default test script
19+
#script:
20+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
21+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("MyPackage"); Pkg.test("MyPackage"; coverage=true)'

0 commit comments

Comments
 (0)