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 fe8c801 commit 9bfb1d0Copy full SHA for 9bfb1d0
.travis.yml
@@ -0,0 +1,22 @@
1
+# Documentation: http://docs.travis-ci.com/user/languages/julia/
2
+language: julia
3
+os:
4
+ - linux
5
+ - osx
6
+julia:
7
+ - 1.1
8
+ - 1.2
9
+ - 1.3
10
+ - nightly
11
+matrix:
12
+ allow_failures:
13
+ - julia: nightly
14
+notifications:
15
+ email: false
16
+after_success:
17
+- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
18
+
19
+# uncomment the following lines to override the default test script
20
+#script:
21
+# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
22
+# - julia -e 'Pkg.clone(pwd()); Pkg.build("MyPackage"); Pkg.test("MyPackage"; coverage=true)'
0 commit comments