We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a414958 commit 8d7e1dcCopy full SHA for 8d7e1dc
.travis.yml
@@ -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
37
+ Pkg.add("Coverage")
38
+ using Coverage
39
+ Codecov.submit(process_folder())'
0 commit comments