Skip to content

Commit 8d7e1dc

Browse files
committed
Travis YML missing for some reason.
1 parent a414958 commit 8d7e1dc

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.travis.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia
2+
language: julia
3+
notifications:
4+
email: false
5+
julia:
6+
- 1.4
7+
os:
8+
- linux
9+
- osx
10+
- windows
11+
arch:
12+
- x64
13+
cache:
14+
directories:
15+
- ~/.julia/artifacts
16+
jobs:
17+
fast_finish: true
18+
allow_failures:
19+
- julia: nightly
20+
exclude:
21+
- arch: x86
22+
os: osx
23+
include:
24+
- stage: Documentation
25+
julia: 1
26+
script: |
27+
julia --project=docs -e '
28+
using Pkg
29+
Pkg.develop(PackageSpec(path=pwd()))
30+
Pkg.instantiate()
31+
include("docs/make.jl")'
32+
after_success: skip
33+
after_success:
34+
- |
35+
julia -e '
36+
using Pkg
37+
Pkg.add("Coverage")
38+
using Coverage
39+
Codecov.submit(process_folder())'

0 commit comments

Comments
 (0)