File tree Expand file tree Collapse file tree 5 files changed +35
-13
lines changed Expand file tree Collapse file tree 5 files changed +35
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' master'
7
+ tags : ' *'
8
+ pull_request :
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ${{ matrix.os }}
13
+ strategy :
14
+ matrix :
15
+ julia-version : [1.3.0]
16
+ julia-arch : [x86]
17
+ os : [ubuntu-latest]
18
+ steps :
19
+
20
+ - uses : julia-actions/setup-julia@latest
21
+ with :
22
+ version : ${{ matrix.julia-version }}
23
+ - name : Install dependencies
24
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
25
+ - name : Build and deploy
26
+ env :
27
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
28
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change @@ -10,16 +10,7 @@ julia:
10
10
matrix :
11
11
allow_failures :
12
12
julia : nightly
13
- include :
14
- - stage : " Documentation"
15
- julia : 1.3
16
- os : linux
17
- script :
18
- - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
19
- Pkg.instantiate()'
20
- - julia --project=docs/ docs/make.jl
21
- after_success : skip
22
13
notifications :
23
14
email : false
24
15
after_success :
25
- - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
16
+ - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
Original file line number Diff line number Diff line change 1
1
# StatsModels
2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/JuliaStats/StatsModels.jl.svg?branch=master )] ( https://travis-ci.org/JuliaStats/StatsModels.jl )
4
- [ ![ Coverage Status] ( https://coveralls.io/repos/github/JuliaStats/StatsModels.jl/badge.svg?branch=master )] ( https://coveralls.io/github/JuliaStats/StatsModels.jl?branch=master )
5
4
[ ![ codecov] ( https://codecov.io/gh/JuliaStats/StatsModels.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaStats/StatsModels.jl )
6
5
7
6
Basic functionality for specifying, fitting, and evaluating statistical models
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
7
7
Tables = " bd369af6-aec1-5ad0-b16a-f7cc5008161c"
8
8
9
9
[compat ]
10
- Documenter = " ~0.21 "
10
+ Documenter = " ~0.24 "
Original file line number Diff line number Diff line change 1
1
using Documenter, StatsModels
2
2
3
+ using Pkg
4
+ Pkg. precompile ()
5
+
3
6
makedocs (
4
7
sitename = " StatsModels.jl" ,
5
8
pages = [
@@ -13,5 +16,6 @@ makedocs(
13
16
)
14
17
15
18
deploydocs (
16
- repo = " github.com/JuliaStats/StatsModels.jl.git"
19
+ repo = " github.com/JuliaStats/StatsModels.jl.git" ,
20
+ push_preview = true ,
17
21
)
You can’t perform that action at this time.
0 commit comments