Revision 0b9c5e92e48d430ca014a0dcd24001cf1d12f5dc authored by Javier Barbero on 02 October 2019, 22:04:05 UTC, committed by Javier Barbero on 02 October 2019, 22:04:05 UTC
Add compatibility to project file and drop Manifest file.
1 parent 1ff3414
Raw File
.travis.yml
language: julia
codecov: true
coveralls: true

os:
    - linux
    - osx
julia:
    - 1.0
    - 1.1
    - 1.2

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