.travis.yml 564 B

12345678910111213141516171819202122
  1. # Documentation: http://docs.travis-ci.com/user/languages/julia/
  2. language: julia
  3. os:
  4. - linux
  5. - osx
  6. julia:
  7. - 1.0
  8. - 1.1
  9. - 1.2
  10. - nightly
  11. matrix:
  12. allow_failures:
  13. - julia: nightly
  14. notifications:
  15. email: false
  16. after_success:
  17. - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder()); Coveralls.submit(process_folder())'
  18. # update docs
  19. - julia -e 'using Pkg; ps=PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps)'
  20. - julia -e 'cd(Pkg.dir("Reduce")); include(joinpath("docs", "make.jl"))'