File tree Expand file tree Collapse file tree 4 files changed +44
-70
lines changed Expand file tree Collapse file tree 4 files changed +44
-70
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.5'
14
+ - ' ^1.6.0-0'
15
+ os :
16
+ - ubuntu-latest
17
+ - macOS-latest
18
+ - windows-latest
19
+ arch :
20
+ - x64
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - uses : julia-actions/setup-julia@v1
24
+ with :
25
+ version : ${{ matrix.version }}
26
+ arch : ${{ matrix.arch }}
27
+ - uses : actions/cache@v1
28
+ env :
29
+ cache-name : cache-artifacts
30
+ with :
31
+ path : ~/.julia/artifacts
32
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
33
+ restore-keys : |
34
+ ${{ runner.os }}-test-${{ env.cache-name }}-
35
+ ${{ runner.os }}-test-
36
+ ${{ runner.os }}-
37
+ - uses : julia-actions/julia-buildpkg@v1
38
+ - uses : julia-actions/julia-runtest@v1
39
+ - uses : julia-actions/julia-processcoverage@v1
40
+ - uses : codecov/codecov-action@v1
41
+ with :
42
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ Core functionality of ApproxFun
3
3
4
4
[ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaApproximation.github.io/ApproxFun.jl/stable )
5
5
[ ![ ] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://JuliaApproximation.github.io/ApproxFun.jl/latest )
6
- [ ![ Build Status] ( https://travis-ci.org/JuliaApproximation/ApproxFunBase.jl.svg?branch=master )] ( https://travis-ci.org/JuliaApproximation/ApproxFunBase.jl )
7
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/q3e3ihfbxnrjn7ji?svg=true )] ( https://ci.appveyor.com/project/dlfivefifty/approxfunbase-jl )
6
+ [ ![ Build Status] ( https://github.com/JuliaApproximation/ClassicalOrthogonalPolynomials.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaApproximation/ApproxFunBase.jl/actions )
8
7
[ ![ codecov] ( https://codecov.io/gh/JuliaApproximation/ApproxFunBase.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaApproximation/ApproxFunBase.jl )
9
- [ ![ Join the chat at https://gitter.im/JuliaApproximation/ApproxFun.jl ] ( https://badges.gitter.im/JuliaApproximation/ApproxFun.jl.svg )] ( https://gitter.im/JuliaApproximation/ApproxFun.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge )
8
+
10
9
11
10
12
11
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments