mirror of
https://github.com/kalmarek/Groups.jl.git
synced 2024-11-19 14:35:28 +01:00
24 lines
551 B
YAML
24 lines
551 B
YAML
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
|
language: julia
|
|
os:
|
|
- linux
|
|
- osx
|
|
julia:
|
|
- 0.7
|
|
- 1.0
|
|
- nightly
|
|
notifications:
|
|
email: true
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- julia: nightly
|
|
|
|
## uncomment the following lines to override the default test
|
|
# script:
|
|
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Groups"); Pkg.test("Groups"; coverage=true)'
|
|
|
|
after_success:
|
|
# push coverage results to Coveralls
|
|
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
|