File tree Expand file tree Collapse file tree 6 files changed +100
-47
lines changed Expand file tree Collapse file tree 6 files changed +100
-47
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,17 @@ name: CompatHelper
3
3
on :
4
4
schedule :
5
5
- cron : ' 00 00 * * *'
6
+ workflow_dispatch :
6
7
7
8
jobs :
8
9
CompatHelper :
9
- runs-on : ubuntu-latest
10
+ runs-on : ${{ matrix.os }}
11
+ strategy :
12
+ matrix :
13
+ julia-version : [1.2.0]
14
+ julia-arch : [x86]
15
+ os : [ubuntu-latest]
10
16
steps :
11
- - uses : julia-actions/setup-julia@latest
12
- with :
13
- version : 1.3
14
17
- name : Pkg.add("CompatHelper")
15
18
run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
16
19
- name : CompatHelper.main()
Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - ' master'
8
+ - ' release-'
9
+ tags : ' *'
10
+ release :
11
+ types : [published]
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ matrix :
18
+ julia-version : [1]
19
+ os : [ubuntu-latest]
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+ - uses : julia-actions/setup-julia@latest
23
+ with :
24
+ version : ${{ matrix.julia-version }}
25
+ - name : Cache artifacts
26
+ uses : actions/cache@v1
27
+ env :
28
+ cache-name : cache-artifacts
29
+ with :
30
+ path : ~/.julia/artifacts
31
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
32
+ restore-keys : |
33
+ ${{ runner.os }}-test-${{ env.cache-name }}-
34
+ ${{ runner.os }}-test-
35
+ ${{ runner.os }}-
36
+ - name : Install dependencies
37
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
38
+ - name : Build and deploy
39
+ env :
40
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
Original file line number Diff line number Diff line change
1
+ name : Unit test
2
+
3
+ on :
4
+ create :
5
+ tags :
6
+ push :
7
+ branches :
8
+ - master
9
+ pull_request :
10
+ schedule :
11
+ - cron : ' 20 00 1 * *'
12
+
13
+ jobs :
14
+ test :
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ julia-version : ['1.0', '1', 'nightly']
20
+ os : [ubuntu-latest, windows-latest, macOS-latest]
21
+
22
+ steps :
23
+
24
+ - name : " Set up Julia"
25
+ uses : julia-actions/setup-julia@v1
26
+ with :
27
+ version : ${{ matrix.julia-version }}
28
+
29
+ - name : Cache artifacts
30
+ uses : actions/cache@v1
31
+ env :
32
+ cache-name : cache-artifacts
33
+ with :
34
+ path : ~/.julia/artifacts
35
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36
+ restore-keys : |
37
+ ${{ runner.os }}-test-${{ env.cache-name }}-
38
+ ${{ runner.os }}-test-
39
+ ${{ runner.os }}-
40
+ - name : " Unit Test"
41
+ uses : julia-actions/julia-runtest@master
42
+
43
+ - uses : julia-actions/julia-processcoverage@v1
44
+ - uses : codecov/codecov-action@v1
45
+ with :
46
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ that is special to some dataset._
10
10
11
11
| ** Package Status** | ** Build Status** |
12
12
| :------------------:| :-----------------:|
13
- | [ ![ License] ( http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat )] ( LICENSE.md ) [ ![ Docs] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaML.github.io/MLDatasets.jl/stable ) | [ ![ Build Status] ( https://travis-ci.org /JuliaML/MLDatasets.jl.svg?branch=master )] ( https://travis-ci.org /JuliaML/MLDatasets.jl ) |
13
+ | [ ![ License] ( http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat )] ( LICENSE.md ) [ ![ Docs] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaML.github.io/MLDatasets.jl/stable ) | [ ![ Build Status] ( https://github.com /JuliaML/MLDatasets.jl/workflows/Unit%20test/badge .svg )] ( https://github.com /JuliaML/MLDatasets.jl/actions ) |
14
14
15
15
This package is a part of the
16
16
[ ` JuliaML ` ] ( https://github.com/JuliaML ) ecosystem. Its
You can’t perform that action at this time.
0 commit comments