Skip to content

Commit

Permalink
Merge pull request #13 from MorganAskins/v0.0.1
Browse files Browse the repository at this point in the history
Update to badges
All modules in docs/lib
New logo
Unit test begin
  • Loading branch information
MorganAskins authored Feb 7, 2020
2 parents 4d43fd7 + 81e448a commit a357f6e
Show file tree
Hide file tree
Showing 12 changed files with 12,389 additions and 5,359 deletions.
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ env:
matrix:
- PYTHON=python3

after_success:
- julia --project=coverage/ -e 'using Pkg;
Pkg.instantiate();
using Coverage;
Codecov.submit(Codecov.process_folder());'

jobs:
include:
- stage: "Documentation"
Expand All @@ -27,3 +21,10 @@ jobs:
Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate();'
- julia --project=docs/ docs/make.jl
- julia -e 'using Pkg; Pkg.test(coverage=true);'

after_success:
- julia -e 'using Pkg;
Pkg.add("Coverage");
using Coverage;
Codecov.submit(process_folder());'
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ _A **B**ayesian **A**nalysis **T**oolkit for **M**onitoring
**A**nti-**N**eutrinos, written in [Julia], which provides a statistical
analysis interface geared towards low-count experiments. BATMAN provides many
customizable methods for evaluating confidence intervals and testing
experimental sensitivity_
experimental sensitivity._

| | |
| :------------ | :------------------------------------- |
| Documentation | [![][stable-img]][stable-url] [![][dev-img]][dev-url] |
| Development | [![][travis-img]][travis-url] [![][appveyor-img]][appveyor-url] [![][codecov-img]][codecov-url] |
| Examples | [![][binder-img]][binder-url] |
| | |
| :---------------- | :------------------------------------- |
| **Documentation** | [![][stable-img]][stable-url] [![][dev-img]][dev-url] |
| **Development** | [![][travis-img]][travis-url] [![][appveyor-img]][appveyor-url] [![][codecov-img]][codecov-url] |
| **Deployment** | [![][docker-img]][docker-url] [![][binder-img]][binder-url] |

---

Expand Down Expand Up @@ -43,4 +43,7 @@ julia> Pkg.add(PackageSpec(url="https://github.com/MorganAskins/Batman.jl"))
[appveyor-img]: https://ci.appveyor.com/api/projects/status/sb0jkbj2thwdu3mr/branch/master?svg=true
[appveyor-url]: https://ci.appveyor.com/project/MorganAskins/batman-jl/branch/master

[docker-img]: https://img.shields.io/docker/cloud/build/morganaskins/batman.jl
[docker-url]: https://hub.docker.com/r/morganaskins/batman.jl

[Julia]: http://julialang.org/
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ makedocs(
sitename="Batman.jl",
modules=[Batman],
pages = Any[
"Home" => "index.md"
"Home" => "index.md",
"Library" => map(s -> "lib/$(s)", sort(readdir(joinpath(@__DIR__, "src/lib"))))
]
)

Expand Down
Loading

0 comments on commit a357f6e

Please sign in to comment.