https://github.com/jbrea/BayesianOptimization.jl
Raw File
Tip revision: 4be9942a0f69a68ab38ac42ddcf09cd6110dafb7 authored by jbrea on 19 May 2023, 14:31:53 UTC
Merge pull request #32 from jbrea/compathelper/new_version/2023-03-31-11-16-33-266-00748834890
Tip revision: 4be9942
.travis.yml
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
  - linux
  - osx
julia:
  - 1.0
  - 1.4
  - 1.5
  - 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)
matrix:
  allow_failures:
  - julia: nightly

# uncomment following lines to deploy documentation
# jobs:
#   include:
#     - stage: Documentation
#       julia: 1.0
#       os: linux
#       script:
#         - julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
#         - julia --project=docs --color=yes docs/make.jl
#       after_success: skip
after_success:
  - julia --project=test/coverage -e 'using Pkg; Pkg.instantiate()'
  - julia --project=test/coverage test/coverage/coverage.jl
back to top