File tree Expand file tree Collapse file tree 5 files changed +41
-34
lines changed Expand file tree Collapse file tree 5 files changed +41
-34
lines changed Original file line number Diff line number Diff line change 1
1
name : CompatHelper
2
-
3
2
on :
4
3
schedule :
5
- - cron : ' 00 * * * *'
6
- issues :
7
- types : [opened, reopened]
8
-
4
+ - cron : 0 0 * * *
5
+ workflow_dispatch :
9
6
jobs :
10
- build :
11
- runs-on : ${{ matrix.os }}
12
- strategy :
13
- matrix :
14
- julia-version : [1.2.0]
15
- julia-arch : [x86]
16
- os : [ubuntu-latest]
7
+ CompatHelper :
8
+ runs-on : ubuntu-latest
17
9
steps :
18
- - uses : julia-actions/setup-julia@latest
19
- with :
20
- version : ${{ matrix.julia-version }}
21
10
- name : Pkg.add("CompatHelper")
22
11
run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
23
12
- name : CompatHelper.main()
24
13
env :
25
14
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
26
16
run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
3
schedule :
4
- - cron : 0 * * * *
4
+ - cron : 0 0 * * *
5
+ workflow_dispatch :
5
6
jobs :
6
7
TagBot :
7
8
runs-on : ubuntu-latest
8
9
steps :
9
10
- uses : JuliaRegistries/TagBot@v1
10
11
with :
11
12
token : ${{ secrets.GITHUB_TOKEN }}
13
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : julia-actions/setup-julia@v1
15
+ with :
16
+ version : 1
17
+ - uses : actions/cache@v1
18
+ env :
19
+ cache-name : cache-artifacts
20
+ with :
21
+ path : ~/.julia/artifacts
22
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
23
+ restore-keys : |
24
+ ${{ runner.os }}-test-${{ env.cache-name }}-
25
+ ${{ runner.os }}-test-
26
+ ${{ runner.os }}-
27
+ - uses : julia-actions/julia-buildpkg@v1
28
+ - uses : julia-actions/julia-runtest@v1
29
+ - uses : julia-actions/julia-processcoverage@v1
30
+ - uses : codecov/codecov-action@v1
31
+ with :
32
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# RecursiveFactorization
2
2
3
- [ ![ Build Status ] ( https://travis-ci.org /YingboMa/RecursiveFactorization.jl.svg?branch=master )] ( https://travis-ci.org /YingboMa/RecursiveFactorization.jl )
3
+ [ ![ Github Action CI ] ( https://github.com /YingboMa/RecursiveFactorization.jl/workflows/CI/badge .svg )] ( https://github.com /YingboMa/RecursiveFactorization.jl/actions )
4
4
[ ![ codecov] ( https://codecov.io/gh/YingboMa/RecursiveFactorization.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/YingboMa/RecursiveFactorization.jl )
5
5
6
6
---
You can’t perform that action at this time.
0 commit comments