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 a6c312c commit 0357aebCopy full SHA for 0357aeb
.travis.yml
@@ -21,6 +21,16 @@ jobs:
21
os: linux
22
script:
23
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
24
+
25
+ ### Coverage
26
+ - stage: "Code coverage"
27
+ julia: 1.3
28
+ os: linux
29
+ script:
30
+ - julia -e 'using Pkg; Pkg.add("Coverage");'
31
+ - julia -e 'using Coverage; Coveralls.submit(Coveralls.process_folder());'
32
+ - julia -e 'using Coverage; Codecov.submit(Codecov.process_folder());'
33
34
### Documentation generation
35
- stage: "Documentation"
36
julia: 1.3
0 commit comments