Skip to content

Commit 9183f1b

Browse files
committed
add CI (Travis) and coverage (Coveralls)
1 parent 5053b3e commit 9183f1b

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: julia
2+
os:
3+
- linux
4+
- osx
5+
julia:
6+
- 1.0
7+
- nightly
8+
matrix:
9+
allow_failures:
10+
- julia: nightly
11+
notifications:
12+
email: false
13+
# uncomment the following lines to override the default test script
14+
#script:
15+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
16+
# - julia --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("SpatialIndexing"); Pkg.test("SpatialIndexing"; coverage=true)'
17+
after_success:
18+
- julia -e 'using Pkg, SpatialIndexing; cd(joinpath(dirname(pathof(SpatialIndexing)), "..")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
SpatialIndexing.jl
22
==============
33

4+
[![Build Status](https://travis-ci.org/alyst/SpatialIndexing.jl.svg?branch=master)](https://travis-ci.org/alyst/SpatialIndexing.jl)
5+
[![Coverage Status](https://coveralls.io/repos/github/alyst/SpatialIndexing.jl/badge.svg?branch=master)](https://coveralls.io/github/alyst/SpatialIndexing.jl?branch=master)
6+
47
`SpatialIndexing` package provides the tools for efficient in-memory indexing of
58
spatial data in Julia (http://julialang.org/).
69

0 commit comments

Comments
 (0)