Skip to content

Commit 2f32c99

Browse files
committed
add flatten, enable documenter docs, update travis
1 parent 27bcaac commit 2f32c99

File tree

7 files changed

+63
-395
lines changed

7 files changed

+63
-395
lines changed

.travis.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ git:
1414

1515
## uncomment the following lines to allow failures on nightly julia
1616
## (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
2020

2121
## uncomment and modify the following lines to manually install system packages
2222
#addons:
@@ -30,7 +30,16 @@ git:
3030
#script:
3131
# - julia -e 'Pkg.clone(pwd()); Pkg.build("TupleTools"); Pkg.test("TupleTools"; coverage=true)'
3232
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

0 commit comments

Comments
 (0)