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 7a06fbe commit b91eae5Copy full SHA for b91eae5
.travis.yml
@@ -14,3 +14,14 @@ script:
14
- julia --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("DistributedFactorGraphs"); Pkg.test("DistributedFactorGraphs"; coverage=true)'
15
after_success:
16
- julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
17
+
18
+jobs:
19
+ include:
20
+ - stage: "Documentation"
21
+ julia: 1.0
22
+ os: linux
23
+ script:
24
+ - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
25
+ Pkg.instantiate()'
26
+ - julia --project=docs/ docs/make.jl
27
+ after_success: skip
0 commit comments