https://github.com/javierbarbero/DataEnvelopmentAnalysis.jl
Revision 57919c045bce05aacfcf76ad50f456a068ec0e7b authored by Javier Barbero on 29 October 2019, 09:14:44 UTC, committed by GitHub on 29 October 2019, 09:14:44 UTC
1 parent 0b9c5e9
Raw File
Tip revision: 57919c045bce05aacfcf76ad50f456a068ec0e7b authored by Javier Barbero on 29 October 2019, 09:14:44 UTC
Support for GLPK 0.12
Tip revision: 57919c0
.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