mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-14 14:15:28 +01:00
30 lines
734 B
YAML
30 lines
734 B
YAML
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
|
language: julia
|
|
os:
|
|
- linux
|
|
- osx
|
|
julia:
|
|
- 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 'using Pkg;
|
|
Pkg.add(PackageSpec(url="https://github.com/kalmarek/Groups.jl", rev="enh/julia-v0.7"));
|
|
Pkg.add(PackageSpec(url="https://github.com/kalmarek/GroupRings.jl", rev="enh/julia-v0.7"));
|
|
Pkg.clone(pwd());
|
|
Pkg.build("PropertyT");
|
|
Pkg.test("PropertyT"; coverage=true)'
|
|
|
|
codecov: true
|
|
|
|
# after_success:
|
|
# push coverage results to Coveralls
|
|
#- julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true);'
|