File tree Expand file tree Collapse file tree 5 files changed +79
-33
lines changed Expand file tree Collapse file tree 5 files changed +79
-33
lines changed Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 0 * * *
3
+ issue_comment :
4
+ types :
5
+ - created
5
6
workflow_dispatch :
6
7
jobs :
7
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
8
10
runs-on : ubuntu-latest
9
11
steps :
10
12
- uses : JuliaRegistries/TagBot@v1
11
13
with :
12
14
token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ jobs :
8
+ test :
9
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10
+ runs-on : ${{ matrix.os }}
11
+ continue-on-error : ${{ matrix.version == 'nightly' }}
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ version :
16
+ - ' 1'
17
+ - ' 1.3'
18
+ - ' nightly'
19
+ os :
20
+ - ubuntu-latest
21
+ - macOS-latest
22
+ - windows-latest
23
+ arch :
24
+ - x64
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - uses : julia-actions/setup-julia@v1
28
+ with :
29
+ version : ${{ matrix.version }}
30
+ arch : ${{ matrix.arch }}
31
+ - uses : actions/cache@v1
32
+ env :
33
+ cache-name : cache-artifacts
34
+ with :
35
+ path : ~/.julia/artifacts
36
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37
+ restore-keys : |
38
+ ${{ runner.os }}-test-${{ env.cache-name }}-
39
+ ${{ runner.os }}-test-
40
+ ${{ runner.os }}-
41
+ - uses : julia-actions/julia-buildpkg@v1
42
+ - uses : julia-actions/julia-runtest@v1
43
+ - uses : julia-actions/julia-processcoverage@v1
44
+ - name : Send coverage
45
+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest'
46
+ uses : coverallsapp/github-action@master
47
+ with :
48
+ github-token : ${{ secrets.GITHUB_TOKEN }}
49
+ path-to-lcov : ./lcov.info
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 : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : julia-actions/setup-julia@latest
16
+ with :
17
+ version : ' 1'
18
+ - name : Install dependencies
19
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
20
+ - name : Build and deploy
21
+ env :
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
23
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
24
+ run : julia --project=docs/ docs/make.jl
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# KernelFunctions.jl
2
2
3
- [ ![ Build Status ] ( https://travis-ci .com/JuliaGaussianProcesses/KernelFunctions.jl.svg?branch=master )] ( https://travis-ci.com/JuliaGaussianProcesses/KernelFunctions.jl )
3
+ ![ CI ] ( https://github .com/JuliaGaussianProcesses/KernelFunctions.jl/workflows/CI/badge .svg?branch=master )
4
4
[ ![ Coverage Status] ( https://coveralls.io/repos/github/JuliaGaussianProcesses/KernelFunctions.jl/badge.svg?branch=master )] ( https://coveralls.io/github/JuliaGaussianProcesses/KernelFunctions.jl?branch=master )
5
5
[ ![ Documentation (stable)] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://juliagaussianprocesses.github.io/KernelFunctions.jl )
6
6
[ ![ Documentation (latest)] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://juliagaussianprocesses.github.io/KernelFunctions.jl/dev )
You can’t perform that action at this time.
0 commit comments