GroupRings.jl/.travis.yml

23 lines
579 B
YAML
Raw Normal View History

# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
julia:
2018-09-30 01:50:38 +02:00
- 1.0
- 1.4
- 1.5
- nightly
notifications:
2018-09-30 01:50:38 +02:00
email: true
matrix:
fast_finish: true
allow_failures:
- julia: nightly
2018-10-01 09:59:43 +02:00
script:
2019-10-30 23:16:49 +01:00
- julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/kalmarek/Groups.jl")); Pkg.build(); Pkg.test(coverage=true);'
2019-11-20 10:11:04 +01:00
- julia --color=yes -e "if VERSION < v\"0.7.0-DEV.5183\"; cd(Pkg.dir(\"${JL_PKG}\")); else using Pkg; end; Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())"
2018-10-01 09:59:43 +02:00
2019-03-15 18:51:27 +01:00
codecov: true