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