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 e44faf0 commit 6897cdbCopy full SHA for 6897cdb
.travis.yml
@@ -0,0 +1,24 @@
1
+# Documentation: http://docs.travis-ci.com/user/languages/julia/
2
+language: julia
3
+sudo: required
4
+os:
5
+ - linux
6
+julia:
7
+ - 1.3
8
+ - 1.4
9
+ - nightly
10
+matrix:
11
+ allow_failures:
12
+ - julia: nightly
13
+addons:
14
+ apt:
15
+ packages:
16
+ - xvfb
17
+ - xauth
18
+ - libgtk-3-0
19
+notifications:
20
+ email: false
21
+# uncomment the following lines to override the default test script
22
+script:
23
+ - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
24
+ - xvfb-run julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
0 commit comments