Groups.jl/.travis.yml

23 lines
543 B
YAML
Raw Normal View History

# 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
- nightly
notifications:
email: true
matrix:
fast_finish: true
allow_failures:
2017-02-02 13:52:18 +01:00
- julia: nightly
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
after_success:
# push coverage results to Coveralls
2018-10-24 21:54:25 +02:00
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'