2017-01-23 16:45:24 +01:00
|
|
|
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
|
|
|
language: julia
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
julia:
|
2018-09-21 19:27:47 +02:00
|
|
|
- 1.0
|
2017-01-23 16:45:24 +01:00
|
|
|
- nightly
|
2017-07-21 23:37:30 +02:00
|
|
|
notifications:
|
|
|
|
email: true
|
2017-01-26 10:43:26 +01:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
allow_failures:
|
2017-02-02 13:52:18 +01:00
|
|
|
- julia: nightly
|
2017-01-26 10:43:26 +01:00
|
|
|
|
2018-10-24 21:54:25 +02:00
|
|
|
## uncomment the following lines to override the default test
|
2018-09-21 19:27:47 +02:00
|
|
|
# script:
|
|
|
|
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Groups"); Pkg.test("Groups"; coverage=true)'
|
2017-07-21 23:36:19 +02:00
|
|
|
|
2019-02-21 15:01:44 +01:00
|
|
|
codecov: true
|
|
|
|
|
|
|
|
# after_success:
|
2017-01-23 16:45:24 +01:00
|
|
|
# push coverage results to Coveralls
|
2019-02-21 15:01:44 +01:00
|
|
|
#- julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true);'
|