2017-08-10 17:13:01 +00:00
|
|
|
language: julia
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
julia:
|
|
|
|
- 0.6
|
|
|
|
- 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
|
|
|
|
script:
|
|
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
2017-08-18 07:05:48 +00:00
|
|
|
- julia -e 'Pkg.clone(pwd()); Pkg.test("PkgTemplates"; coverage=true)'
|
2017-08-10 17:13:01 +00:00
|
|
|
after_success:
|
|
|
|
- julia -e 'cd(Pkg.dir("PkgTemplates")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
|
2017-08-18 07:05:48 +00:00
|
|
|
- julia -e 'Pkg.add("Documenter"); cd(Pkg.dir("PkgTemplates")); include(joinpath("docs", "make.jl"))'
|