You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
648 B
29 lines
648 B
## Documentation: http://docs.travis-ci.com/user/languages/julia/ |
|
language: julia |
|
os: |
|
- linux |
|
- osx |
|
julia: |
|
- 1.0 |
|
- nightly |
|
# matrix: |
|
# allow_failures: |
|
# - julia: nightly |
|
branches: |
|
only: |
|
- master |
|
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ |
|
jobs: |
|
include: |
|
- stage: deploy |
|
julia: 1.0 |
|
os: linux |
|
script: |
|
- julia --project=docs -e 'using Pkg; Pkg.instantiate()' |
|
- julia --project=docs --color=yes docs/make.jl |
|
- julia --project=test/coverage -e 'using Pkg; Pkg.instantiate()' |
|
- julia --project=test/coverage test/coverage/coverage.jl |
|
notifications: |
|
email: false |
|
git: |
|
depth: 99999999
|
|
|