
Allows for Julia code to not require the use of semi-colon which is matches how most users will write Julia code. An additional benefit is that it allows for use of single line comments.
29 lines
519 B
YAML
29 lines
519 B
YAML
# Documentation: http://docs.travis-ci.com/user/languages/julia
|
|
language: julia
|
|
notifications:
|
|
email: false
|
|
julia:
|
|
- 1.0
|
|
- 1.3
|
|
- nightly
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
arch:
|
|
- x64
|
|
jobs:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- julia: nightly
|
|
include:
|
|
- stage: Documentation
|
|
julia: 1.0
|
|
script: |
|
|
julia --project=docs -e '
|
|
using Pkg
|
|
Pkg.develop(PackageSpec(path=pwd()))
|
|
Pkg.instantiate()
|
|
include("docs/make.jl")'
|
|
after_success: skip
|