Revision 0178a02e7152237d177520fb10925cd7bff19e5e authored by Holger Teichgraeber on 24 April 2019, 19:17:25 UTC, committed by GitHub on 24 April 2019, 19:17:25 UTC
2 parent s 20fb12f + 8bfd7fd
Raw File
.travis.yml
language: julia

os:
  - linux

julia:
  - 1.0

notifications:
  email: false

after_success:

jobs:
  include:
    - stage: "Documentation"
      julia: 1.0
      os: linux
      script:
        - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
        - julia --project=docs/ docs/make.jl
      after_success:
    - stage: "Testing"
      julia: 1.0
      os: linux
      script:
        - julia --project=test/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
        - julia --project=test/ test/clustering.jl
      after_success:
services: docker
back to top