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 99fcc24 commit a096490Copy full SHA for a096490
.travis.yml
@@ -1,7 +1,15 @@
1
language: julia
2
sudo: false
3
+os:
4
+ - linux
5
+ - osx
6
julia:
7
- nightly
8
- 0.4
9
notifications:
10
- email: false
11
+script:
12
+ - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13
+ - julia --inline=no -e 'Pkg.clone(pwd()); Pkg.test("Contour"; coverage=true)'
14
+after_success:
15
+ - julia -e 'cd(Pkg.dir("Contour")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
0 commit comments