mirror of
https://github.com/tgorordo/WignerSymbols.jl.git
synced 2026-06-05 15:42:15 -07:00
18 lines
428 B
YAML
18 lines
428 B
YAML
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
|
language: julia
|
|
os:
|
|
- linux
|
|
- osx
|
|
julia:
|
|
- 0.7
|
|
- 1.0
|
|
- nightly
|
|
matrix:
|
|
allow_failures:
|
|
- julia: nightly
|
|
notifications:
|
|
email: false
|
|
|
|
after_success:
|
|
# push coverage results to Coveralls
|
|
- julia -e 'using Pkg; Pkg.add("WignerSymbols"); using Coverage; Codecov.submit(Codecov.process_folder()); Coveralls.submit(Coveralls.process_folder());'
|