https://github.com/ds4dm/Tulip.jl
Raw File
Tip revision: ccfe907f580e83304ce60f3fcc7413a37db8e65a authored by mtanneau on 18 September 2020, 01:35:57 UTC
Initial infrasctructure for preconditioners
Tip revision: ccfe907
.travis.yml
language: julia
codecov: true

## Documentation: http://docs.travis-ci.com/user/languages/julia/

os:
  - linux
  - osx
julia:
  - 1
  - nightly
notifications:
  email: false
git:
  depth: 99999999

## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
jobs:
  allow_failures:
  - julia: nightly
  include:
    - stage: "Documentation"
      julia: 1
      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