You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
42
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew cask install basictex; fi
43
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH=/Library/TeX/texbin:"$PATH"; fi
44
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo tlmgr update --self; fi
45
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo tlmgr install luatex85; fi
46
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo tlmgr install pgfplots; fi
47
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo tlmgr install standalone; fi
48
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install pdf2svg; fi
41
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
42
+
then brew update; fi
43
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
44
+
then brew cask install basictex; fi
45
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
46
+
then export PATH=/Library/TeX/texbin:"$PATH"; fi
47
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
48
+
then sudo tlmgr update --self; fi
49
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
50
+
then sudo tlmgr install luatex85; fi
51
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
52
+
then sudo tlmgr install pgfplots; fi
53
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
54
+
then sudo tlmgr install standalone; fi
55
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
56
+
then brew install pdf2svg; fi
49
57
50
58
script:
51
-
- julia --check-bounds=yes --color=yes -e 'Pkg.clone(pwd(), "PredictMD")'
52
-
- julia --check-bounds=yes --color=yes -e 'Pkg.build("PredictMD")'
53
-
- julia --check-bounds=yes --color=yes -e 'import PredictMD'
54
-
- julia --check-bounds=yes --color=yes -e 'Pkg.test("PredictMD"; coverage=true)'
59
+
- julia --check-bounds=yes --color=yes -e '
60
+
Pkg.clone(pwd(), "PredictMD")'
61
+
- julia --check-bounds=yes --color=yes -e '
62
+
Pkg.build("PredictMD")'
63
+
- julia --check-bounds=yes --color=yes -e '
64
+
import PredictMD'
65
+
- julia --check-bounds=yes --color=yes -e '
66
+
Pkg.test("PredictMD"; coverage=true)'
55
67
56
68
after_success:
57
69
- julia --check-bounds=yes --color=yes -e 'Pkg.add("Coverage");'
58
-
- julia --check-bounds=yes --color=yes -e 'cd(Pkg.dir("PredictMD")); using Coverage; Codecov.submit(Codecov.process_folder());'
59
-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then julia --check-bounds=yes --color=yes -e 'cd(Pkg.dir("PredictMD")); using Coverage; Coveralls.submit(Coveralls.process_folder());'; fi
60
-
- julia --check-bounds=yes --color=yes -e 'cd(Pkg.dir("PredictMD")); include(joinpath("docs", "deploy_docs.jl"))'
70
+
- julia --check-bounds=yes --color=yes -e 'cd(Pkg.dir("PredictMD"));
71
+
using Coverage; Codecov.submit(Codecov.process_folder());'
72
+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]];
73
+
then julia --check-bounds=yes --color=yes -e '
74
+
cd(Pkg.dir("PredictMD"));
75
+
using Coverage;
76
+
Coveralls.submit(Coveralls.process_folder());'; fi
<ahref="https://github.com/bcbi/PredictMD.jl/releases/latest"><imgalt="Current release"title="Current release"src="https://img.shields.io/github/release/bcbi/PredictMD.svg" /> </a> <ahref="https://zenodo.org/badge/latestdoi/109460252"> <imgalt="DOI for current release"title="DOI for current release"src="https://zenodo.org/badge/109460252.svg"/></a>
4
4
5
-
[PredictMD](https://www.predictmd.net) is a Julia package that provides a uniform interface for using multiple different statistics and machine learning packages.
5
+
[PredictMD](https://www.predictmd.net) is a Julia package that provides a
6
+
uniform interface for using multiple different machine learning packages.
6
7
7
8
### Table of Contents
8
9
-[Installation](#installation)
@@ -11,20 +12,25 @@
11
12
12
13
## Installation
13
14
14
-
To install PredictMD, open Julia (e.g. open a terminal, type `julia`, and press enter) and run the following command:
15
+
To install PredictMD, open Julia
16
+
(e.g. open a terminal, type `julia`, and press enter)
17
+
and run the following command:
15
18
```julia
16
19
Pkg.clone("https://github.com/bcbi/PredictMD.jl")
17
20
```
18
21
19
-
After you install PredictMD, you should run the test suite to make sure that everything is working. You can run the test suite with the following Julia command:
22
+
After you install PredictMD, you should run the test suite to make sure that
23
+
everything is working. You can run the test suite with the following
24
+
Julia command:
20
25
```julia
21
26
Pkg.test("PredictMD")
22
27
```
23
28
24
29
## Documentation
25
30
26
-
The [PredictMD documentation](https://www.predictmd.net/stable) contains useful
27
-
information, including instructions for use, example code, and a description of
31
+
The [PredictMD documentation](https://www.predictmd.net/stable) contains
32
+
useful information, including instructions for use, example code, and a
33
+
description of
28
34
PredictMD's internals.
29
35
30
36
## CI/CD
@@ -40,28 +46,79 @@ PredictMD's internals.
40
46
<tbody>
41
47
<tr>
42
48
<td>Travis CI</td>
43
-
<td><a href="https://travis-ci.org/bcbi/PredictMD.jl/branches"><img alt="Travis build status (master)" title="Travis build status (master)" src="https://travis-ci.org/bcbi/PredictMD.jl.svg?branch=master" /></a></td>
44
-
<td><a href="https://travis-ci.org/bcbi/PredictMD.jl/branches"><img alt="Travis build status (develop)" title="Travis build status (develop)" src="https://travis-ci.org/bcbi/PredictMD.jl.svg?branch=develop" /></a></td>
<td><a href="https://coveralls.io/github/bcbi/PredictMD.jl?branch=master"><img alt="Coverage status (master)" title="Coverage status (master)" src="https://coveralls.io/repos/github/bcbi/PredictMD.jl/badge.svg?branch=master" /></a></td>
59
-
<td><a href="https://coveralls.io/github/bcbi/PredictMD.jl?branch=develop"><img alt="Coverage status (develop)" title="Coverage status (develop)" src="https://coveralls.io/repos/github/bcbi/PredictMD.jl/badge.svg?branch=develop" /></a></td>
<img alt="Coverage status (develop)" title="Coverage status (develop)" src="https://coveralls.io/repos/github/bcbi/PredictMD.jl/badge.svg?branch=develop"
0 commit comments