https://github.com/javierbarbero/DataEnvelopmentAnalysis.jl
Revision 9927cf1f631eb614bc225a78907f5662cbea619a authored by Javier Barbero on 18 July 2020, 17:43:19 UTC, committed by Javier Barbero on 18 July 2020, 17:43:19 UTC
- Add directions to the DDF and Profit DDF models that can be specified with a Symbol.
- Set directions as named arguments. This is a breaking change.
1 parent 478f17a
Raw File
Tip revision: 9927cf1f631eb614bc225a78907f5662cbea619a authored by Javier Barbero on 18 July 2020, 17:43:19 UTC
Add directions to DDF model
Tip revision: 9927cf1
.travis.yml
language: julia
codecov: true
coveralls: true

os:
    - linux
    - osx
julia:
    - 1.0
#    - 1.1
#    - 1.2
    - 1.3
    - 1.4

jobs:
  include:
    - stage: "Documentation"
      julia: 1.4
      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