File tree Expand file tree Collapse file tree 7 files changed +63
-395
lines changed Expand file tree Collapse file tree 7 files changed +63
-395
lines changed Original file line number Diff line number Diff line change 14
14
15
15
# # uncomment the following lines to allow failures on nightly julia
16
16
# # (tests will run but not make your overall status red)
17
- # matrix:
18
- # allow_failures:
19
- # - julia: nightly
17
+ matrix :
18
+ allow_failures :
19
+ - julia : nightly
20
20
21
21
# # uncomment and modify the following lines to manually install system packages
22
22
# addons:
30
30
# script:
31
31
# - julia -e 'Pkg.clone(pwd()); Pkg.build("TupleTools"); Pkg.test("TupleTools"; coverage=true)'
32
32
after_success :
33
- # push coverage results to Coveralls
34
- - julia -e 'cd(Pkg.dir("TupleTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
35
- # push coverage results to Codecov
36
- - julia -e 'cd(Pkg.dir("TupleTools")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
33
+ # push coverage results to Codecov and Coveralls
34
+ - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder()); Coveralls.submit(Coveralls.process_folder())'
35
+
36
+ jobs :
37
+ include :
38
+ - stage : " Documentation"
39
+ julia : 1.0
40
+ os : linux
41
+ script :
42
+ - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
43
+ Pkg.instantiate()'
44
+ - julia --project=docs/ docs/make.jl
45
+ after_success : skip
You can’t perform that action at this time.
0 commit comments