Skip to content

Commit 9bfb1d0

Browse files
committed
Create .travis.yml
1 parent fe8c801 commit 9bfb1d0

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.1
8+
- 1.2
9+
- 1.3
10+
- nightly
11+
matrix:
12+
allow_failures:
13+
- julia: nightly
14+
notifications:
15+
email: false
16+
after_success:
17+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
18+
19+
# uncomment the following lines to override the default test script
20+
#script:
21+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
22+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("MyPackage"); Pkg.test("MyPackage"; coverage=true)'

0 commit comments

Comments
 (0)