PkgTemplates.jl/.travis.yml

41 lines
860 B
YAML
Raw Permalink Normal View History

2017-08-10 17:13:01 +00:00
language: julia
2019-08-26 15:01:26 +00:00
notifications:
email: false
2017-08-10 17:13:01 +00:00
os:
- linux
- osx
- windows
2017-08-10 17:13:01 +00:00
julia:
2018-09-19 21:39:01 +00:00
- 1.0
- 1
2017-08-10 17:13:01 +00:00
- nightly
2019-08-31 10:33:33 +00:00
before_script:
- git config --global user.name Tester
- git config --global user.email te@st.er
2017-08-29 11:24:39 +00:00
matrix:
2019-08-26 15:01:26 +00:00
fast_finish: true
2017-08-29 11:24:39 +00:00
allow_failures:
- julia: nightly
include:
- arch: x86
2019-08-26 15:01:26 +00:00
julia: 1.0
- stage: Documentation
julia: 1
script:
2019-09-18 14:22:04 +00:00
- git config --global user.name name
- git config --global user.email email
- git config --global github.user username
- |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
include("docs/make.jl")'
after_success: skip
after_success: |
julia -e '
using Pkg
Pkg.add("Coverage")
using Coverage
Codecov.submit(process_folder())'