Skip to content

Commit 534da06

Browse files
add Travis
1 parent 1290457 commit 534da06

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.codecov.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
julia:
6+
- 1.1
7+
#matrix:
8+
# allow_failures:
9+
# - julia: nightly
10+
notifications:
11+
email: false
12+
# uncomment the following lines to override the default test script
13+
#script:
14+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
15+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("DiffEqSensitivity"); Pkg.test("DiffEqSensitivity"; coverage=true)'
16+
after_success:
17+
# push coverage results to Coveralls
18+
- julia -e 'cd(Pkg.dir("Quadrature")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
19+
# push coverage results to Codecov
20+
- julia -e 'cd(Pkg.dir("Quadrature")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

CITATION.bib

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@article{DifferentialEquations.jl-2017,
2+
author = {Rackauckas, Christopher and Nie, Qing},
3+
doi = {10.5334/jors.151},
4+
journal = {The Journal of Open Source Software},
5+
keywords = {Applied Mathematics},
6+
note = {Exported from https://app.dimensions.ai on 2019/05/05},
7+
number = {1},
8+
pages = {},
9+
title = {DifferentialEquations.jl – A Performant and Feature-Rich Ecosystem for Solving Differential Equations in Julia},
10+
url = {https://app.dimensions.ai/details/publication/pub.1085583166 and http://openresearchsoftware.metajnl.com/articles/10.5334/jors.151/galley/245/download/},
11+
volume = {5},
12+
year = {2017}
13+
}

0 commit comments

Comments
 (0)