Raw File
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