File tree Expand file tree Collapse file tree 3 files changed +66
-26
lines changed Expand file tree Collapse file tree 3 files changed +66
-26
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ - dev
7
+ push :
8
+ branches :
9
+ - master
10
+ - dev
11
+ tags : ' *'
12
+ jobs :
13
+ test :
14
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ version :
20
+ - ' 1.0'
21
+ - ' 1'
22
+ os :
23
+ - ubuntu-latest
24
+ arch :
25
+ - x64
26
+ steps :
27
+ - uses : actions/checkout@v2
28
+ - uses : julia-actions/setup-julia@v1
29
+ with :
30
+ version : ${{ matrix.version }}
31
+ arch : ${{ matrix.arch }}
32
+ - uses : actions/cache@v1
33
+ env :
34
+ cache-name : cache-artifacts
35
+ with :
36
+ path : ~/.julia/artifacts
37
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38
+ restore-keys : |
39
+ ${{ runner.os }}-test-${{ env.cache-name }}-
40
+ ${{ runner.os }}-test-
41
+ ${{ runner.os }}-
42
+ - uses : julia-actions/julia-buildpkg@v1
43
+ - uses : julia-actions/julia-runtest@v1
44
+ - uses : julia-actions/julia-processcoverage@v1
45
+ - uses : codecov/codecov-action@v1
46
+ with :
47
+ file : lcov.info
48
+ docs :
49
+ name : Documentation
50
+ runs-on : ubuntu-latest
51
+ steps :
52
+ - uses : actions/checkout@v2
53
+ - uses : julia-actions/setup-julia@v1
54
+ with :
55
+ version : ' 1'
56
+ - run : |
57
+ julia --project=docs -e '
58
+ using Pkg
59
+ Pkg.develop(PackageSpec(path=pwd()))
60
+ Pkg.instantiate()'
61
+ - run : julia --project=docs docs/make.jl
62
+ env :
63
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
64
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# MLJLinearModels.jl
2
2
3
- | [ MacOS/ Linux] | Coverage | Documentation |
3
+ | [ Linux] | Coverage | Documentation |
4
4
| :------------ | :------- | :------------ |
5
- | [ ![ Build Status] ( https://travis-ci .org/alan-turing-institute/MLJLinearModels.jl.svg?branch=master )] ( https://travis-ci .org/alan-turing-institute/MLJLinearModels.jl ) | [ ![ codecov.io] ( http://codecov.io/github/alan-turing-institute/MLJLinearModels.jl/coverage.svg?branch=master )] ( http://codecov.io/github/alan-turing-institute/MLJLinearModels.jl?branch=master ) | [ ![ stable-doc] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://alan-turing-institute.github.io/MLJLinearModels.jl/stable/ ) [ ![ dev-doc] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://alan-turing-institute.github.io/MLJLinearModels.jl/dev/ ) |
5
+ | [ ![ Build Status] ( https://github .org/alan-turing-institute/MLJLinearModels.jl/workflows/CI/badge .svg )] ( https://github .org/alan-turing-institute/MLJLinearModels.jl/actions ) | [ ![ codecov.io] ( http://codecov.io/github/alan-turing-institute/MLJLinearModels.jl/coverage.svg?branch=master )] ( http://codecov.io/github/alan-turing-institute/MLJLinearModels.jl?branch=master ) | [ ![ stable-doc] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://alan-turing-institute.github.io/MLJLinearModels.jl/stable/ ) [ ![ dev-doc] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://alan-turing-institute.github.io/MLJLinearModels.jl/dev/ ) |
6
6
7
7
This is a package gathering functionalities to solve a number of generalised linear regression/classification problems which, inherently, correspond to an optimisation problem of the form
8
8
You can’t perform that action at this time.
0 commit comments