32 lines
566 B
YAML
32 lines
566 B
YAML
language: julia
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
julia:
|
|
- 1.0
|
|
- 1.2
|
|
- 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.2
|
|
script: julia --project=docs -e '
|
|
using Pkg
|
|
Pkg.develop(PackageSpec(; path=pwd()))
|
|
Pkg.instantiate()
|
|
include("docs/make.jl")'
|
|
after_success: skip
|