Skip to content

Commit de411a3

Browse files
Correct travis-ci script (#64)
* add Installation and Contributing sections * correct travis script * build only on master * disable notifications
1 parent 5a26df0 commit de411a3

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

.travis.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
11
language: julia
2-
os:
3-
- linux
2+
43
julia:
5-
- 1.0
6-
- 1.1
7-
- 1.2
8-
matrix:
9-
allow_failures:
10-
- julia: nightly
4+
- 1.0
5+
- 1.1
6+
- 1.2
7+
- 1.3
8+
9+
os:
10+
- linux
11+
12+
after_success:
13+
- julia --project -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
14+
1115
notifications:
1216
email: false
13-
sudo: false
17+
1418
branches:
1519
only:
1620
- master
17-
codecov: true
21+
1822
jobs:
1923
include:
2024
- stage: "Documentation"
2125
julia: 1.0
2226
os: linux
2327
script:
24-
- julia --project=docs -e 'using Pkg; Pkg.add(PackageSpec(path=pwd()))'
25-
- julia --project=docs --color=yes docs/make.jl
28+
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
29+
Pkg.develop(PackageSpec(path=pwd()))'
30+
- julia --project=docs/ docs/make.jl
31+
after_success: skip

0 commit comments

Comments
 (0)