Skip to content

Commit

Permalink
compat entries + travis configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobunse committed Dec 3, 2020
1 parent 286c549 commit 0bb7ef7
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
- windows
julia:
- 1.0
- 1.5
- nightly
notifications:
email: false
git:
depth: 99999999
matrix:
allow_failures:
- os: windows
- julia:
- 1.0
- nightly

# push coverage results to Codecov
after_success:
- julia -e 'cd(Pkg.dir("CriticalDifferenceDiagrams")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
17 changes: 17 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,20 @@ MultipleTesting = "f8716d33-7c4a-5097-896f-ce0ecbd3ef6b"
PGFPlots = "3b7a836e-365b-5785-a47d-02c71176b4aa"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
DataFrames = "0.21"
Distributions = "0.23"
Graphs = "0.10"
HypothesisTests = "0.10"
MultipleTesting = "0.4"
PGFPlots = "3.3"
Requires = "1.1"
julia = "1"

[extras]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["CSV", "Test"]

0 comments on commit 0bb7ef7

Please sign in to comment.