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 16f3b5d commit 172d0a1Copy full SHA for 172d0a1
.travis.yml
@@ -18,13 +18,9 @@ matrix:
18
allow_failures:
19
- julia: nightly
20
21
-jobs:
22
- include:
23
- - stage: "Documentation"
24
- julia: 1.3
25
- os: linux
26
- script:
27
- - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
28
- Pkg.instantiate()'
29
- - julia --project=docs/ docs/make.jl
30
- after_success: skip
+after_success:
+ # Submit test coverage report
+ #- julia --project -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
+ # Build and deploy documentation
+ - julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
+ - julia --project=docs/ docs/make.jl
0 commit comments