PkgTemplates.jl/.travis.yml

25 lines
530 B
YAML
Raw Normal View History

2017-08-10 17:13:01 +00:00
language: julia
os:
- linux
- osx
julia:
2018-09-19 21:39:01 +00:00
- 1.0
2017-08-10 17:13:01 +00:00
- nightly
2017-08-29 11:24:39 +00:00
matrix:
allow_failures:
- julia: nightly
fast_finish: true
2017-08-10 17:13:01 +00:00
notifications:
email: false
2018-12-19 20:28:26 +00:00
after_success: julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
jobs:
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