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