Skip to content

Commit 6897cdb

Browse files
authored
Create .travis.yml
1 parent e44faf0 commit 6897cdb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)