Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed May 29, 2020
2 parents a571519 + 781bad3 commit 127dfcb
Show file tree
Hide file tree
Showing 89 changed files with 8,725 additions and 7,887 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
test/csv/rds/
docs/build/
docs/deprecated
examples
18 changes: 14 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@ os:
julia:
- 1.0
- 1.1
- nightly
- 1.2
- 1.3
- 1.4

branches:
only:
- master
- dev

matrix:
allow_failures:
- julia: nightly

notifications:
email: false
Expand All @@ -28,3 +27,14 @@ after_success:
- julia -e 'using Pkg; cd(Pkg.dir("ClinicalTrialUtilities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'using Pkg; cd(Pkg.dir("ClinicalTrialUtilities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

jobs:
include:
- stage: "Documentation"
julia: 1.0
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip
28 changes: 18 additions & 10 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,36 @@
authors = ["Vladimir Arnautov ([email protected])"]
name = "ClinicalTrialUtilities"
uuid = "535c2557-d7d0-564d-8ff9-4ae146c18cfe"
version = "0.1.16"
version = "0.2.6"

[deps]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

[extras]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"

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

[compat]
julia = "1"
DataFrames = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18"
Distributions = "0.16, 0.17, 0.18, 0.19, 0.20"
StatsBase = "0.30, 0.31"
CSV = "0.5"
julia = "1.0, 1.1, 1.2, 1.3, 1.4"
Distributions = "0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23"
StatsBase = "0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32, 0.33"
DataFrames = "0.19, 0.20"
QuadGK = "2.0, 2.1, 2.2, 2.3"
SpecialFunctions = "0.8, 0.9, 0.10"
Roots = "0.7, 0.8, 1.0"
CSV = "0.5, 0.6"
RecipesBase = "0.7, 0.8, 1.0"
Reexport = "0.1, 0.2"
Loading

0 comments on commit 127dfcb

Please sign in to comment.