Skip to content

Commit a6c312c

Browse files
authored
Update .travis.yml
1 parent 33fc522 commit a6c312c

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.travis.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,27 @@
11
language: julia
22

3-
os:
4-
- linux
5-
- osx
6-
73
codecov: true
84
coveralls: true
95

10-
julia:
11-
- 1.3
12-
- nightly
13-
146
notifications:
157
email: false
168

179
jobs:
1810
allow_failures:
1911
- env: TRAVIS_JULIA_VERSION=nightly
2012
include:
13+
### Tests
14+
- stage: "Test (Julia 1.3)"
15+
julia: 1.3
16+
os: linux
17+
script:
18+
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
19+
- stage: "Test (Julia nightly)"
20+
julia: nightly
21+
os: linux
22+
script:
23+
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
24+
### Documentation generation
2125
- stage: "Documentation"
2226
julia: 1.3
2327
os: linux

0 commit comments

Comments
 (0)