File tree Expand file tree Collapse file tree 6 files changed +69
-48
lines changed Expand file tree Collapse file tree 6 files changed +69
-48
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ - push
4+ - pull_request
5+ jobs :
6+ test :
7+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ version :
13+ - ' 1' # automatically expands to the latest stable 1.x release of Julia
14+ os :
15+ - ubuntu-latest
16+ arch :
17+ - x64
18+ steps :
19+ - uses : actions/checkout@v2
20+ - uses : julia-actions/setup-julia@v1
21+ with :
22+ version : ${{ matrix.version }}
23+ arch : ${{ matrix.arch }}
24+ - uses : actions/cache@v1
25+ env :
26+ cache-name : cache-artifacts
27+ with :
28+ path : ~/.julia/artifacts
29+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
30+ restore-keys : |
31+ ${{ runner.os }}-test-${{ env.cache-name }}-
32+ ${{ runner.os }}-test-
33+ ${{ runner.os }}-
34+ - uses : julia-actions/julia-buildpkg@v1
35+ - uses : julia-actions/julia-runtest@v1
36+ - uses : julia-actions/julia-processcoverage@v1
37+ - uses : codecov/codecov-action@v1
38+ with :
39+ file : lcov.info
Original file line number Diff line number Diff line change 11name : CompatHelper
2-
32on :
43 schedule :
5- - cron : ' 00 * * * *'
6-
4+ - cron : 0 0 * * *
5+ workflow_dispatch :
76jobs :
8- build :
9- runs-on : ${{ matrix.os }}
10- strategy :
11- matrix :
12- julia-version : [1.3.0]
13- julia-arch : [x86]
14- os : [ubuntu-latest]
7+ CompatHelper :
8+ runs-on : ubuntu-latest
159 steps :
16- - uses : julia-actions/setup-julia@latest
17- with :
18- version : ${{ matrix.julia-version }}
19- - name : Install dependencies
20- run : julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(name = "CompatHelper", url = "https://github.com/bcbi/CompatHelper.jl.git"))'
21- - name : CompatHelper.main
10+ - name : " Install CompatHelper"
11+ run : |
12+ import Pkg
13+ name = "CompatHelper"
14+ uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
15+ version = "2"
16+ Pkg.add(; name, uuid, version)
17+ shell : julia --color=yes {0}
18+ - name : " Run CompatHelper"
19+ run : |
20+ import CompatHelper
21+ CompatHelper.main()
22+ shell : julia --color=yes {0}
2223 env :
2324 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24- JULIA_DEBUG : CompatHelper
25- run : julia -e 'using CompatHelper; CompatHelper.main()'
25+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
26+ # COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
Original file line number Diff line number Diff line change 11name : TagBot
22on :
3- schedule :
4- - cron : 0 * * * *
3+ issue_comment : # THIS BIT IS NEW
4+ types :
5+ - created
6+ workflow_dispatch :
57jobs :
68 TagBot :
9+ # THIS 'if' LINE IS NEW
10+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11+ # NOTHING BELOW HAS CHANGED
712 runs-on : ubuntu-latest
813 steps :
914 - uses : JuliaRegistries/TagBot@v1
1015 with :
1116 token : ${{ secrets.GITHUB_TOKEN }}
17+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11name = " AlphaStableDistributions"
22uuid = " f20549b4-2d50-407f-863c-cdd202ba59a3"
33authors = [" Fredrik Bagge Carlson" , " Too Yuen Min" ]
4- version = " 1.1.0 "
4+ version = " 1.1.1 "
55
66[deps ]
77Distributions = " 31c24e10-a181-5473-b8eb-7969acd0382f"
@@ -17,7 +17,7 @@ ToeplitzMatrices = "c751599d-da0a-543b-9d20-d0a503d91d24"
1717
1818[compat ]
1919Distributions = " 0.21, 0.22, 0.23, 0.24"
20- Interpolations = " 0.12"
20+ Interpolations = " 0.12, 0.13 "
2121MAT = " 0.6, 0.7, 0.8, 0.9"
2222SpecialFunctions = " 0.8, 0.9, 0.10, 1.0"
2323StaticArrays = " 0.12"
Original file line number Diff line number Diff line change 11# AlphaStableDistributions
22
3- [ ![ Build Status ] ( https://travis-ci.org /org-arl/AlphaStableDistributions.jl. svg?branch=master )] ( https://travis-ci.org /org-arl/AlphaStableDistributions.jl )
3+ [ ![ CI ] ( https://github.com /org-arl/AlphaStableDistributions.jl/actions/workflows/CI.yml/badge. svg )] ( https://github.com /org-arl/AlphaStableDistributions.jl/actions/workflows/CI.yml )
44[ ![ Codecov] ( https://codecov.io/gh/org-arl/AlphaStableDistributions.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/org-arl/AlphaStableDistributions.jl )
55
66This library is a port of functionality from [ arlpy] ( https://github.com/org-arl/arlpy/blob/master/arlpy/stable.py ) . The two distributions supported are
You can’t perform that action at this time.
0 commit comments