File tree Expand file tree Collapse file tree 3 files changed +49
-18
lines changed Expand file tree Collapse file tree 3 files changed +49
-18
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ machine learning models into
5
5
[ MLJ] ( https://github.com/alan-turing-institute/MLJ.jl ) .
6
6
7
7
8
- | [ MacOS/ Linux] | Coverage |
8
+ | Linux | Coverage |
9
9
| :-----------: | :------: |
10
- | [ ![ Build Status] ( https://travis-ci.org /alan-turing-institute/MLJModelInterface.jl.svg?branch=master )] ( https://travis-ci.org /alan-turing-institute/MLJModelInterface.jl ) | [ ![ codecov.io] ( http://codecov.io/github/alan-turing-institute/MLJModelInterface.jl/coverage.svg?branch=master )] ( http://codecov.io/github/alan-turing-institute/MLJModelInterface.jl?branch=master ) |
10
+ | [ ![ Build Status] ( https://github.com /alan-turing-institute/MLJModelInterface.jl/workflows/CI/badge .svg )] ( https://github.com /alan-turing-institute/MLJModelInterface.jl/actions ) | [ ![ codecov.io] ( http://codecov.io/github/alan-turing-institute/MLJModelInterface.jl/coverage.svg?branch=master )] ( http://codecov.io/github/alan-turing-institute/MLJModelInterface.jl?branch=master ) |
11
11
12
12
13
13
[ MLJ] ( https://github.com/alan-turing-institute/MLJ.jl ) is a framework
You can’t perform that action at this time.
0 commit comments