26 lines
538 B
YAML
26 lines
538 B
YAML
language: julia
|
|
os:
|
|
- linux
|
|
- osx
|
|
julia:
|
|
- 1.0
|
|
- 1.1
|
|
- nightly
|
|
matrix:
|
|
allow_failures:
|
|
- julia: nightly
|
|
fast_finish: true
|
|
notifications:
|
|
email: false
|
|
after_success: julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
|
|
jobs:
|
|
include:
|
|
- stage: Documentation
|
|
julia: 1.1
|
|
script: julia --project=docs -e '
|
|
using Pkg;
|
|
Pkg.develop(PackageSpec(path=pwd()));
|
|
Pkg.instantiate();
|
|
include("docs/make.jl");'
|
|
after_success: skip
|