We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33fc522 commit a6c312cCopy full SHA for a6c312c
.travis.yml
@@ -1,23 +1,27 @@
1
language: julia
2
3
-os:
4
- - linux
5
- - osx
6
-
7
codecov: true
8
coveralls: true
9
10
-julia:
11
- - 1.3
12
- - nightly
13
14
notifications:
15
email: false
16
17
jobs:
18
allow_failures:
19
- env: TRAVIS_JULIA_VERSION=nightly
20
include:
+ ### Tests
+ - stage: "Test (Julia 1.3)"
+ julia: 1.3
+ os: linux
+ script:
+ - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
+ - stage: "Test (Julia nightly)"
+ julia: nightly
21
22
23
24
+ ### Documentation generation
25
- stage: "Documentation"
26
julia: 1.3
27
os: linux
0 commit comments