File tree Expand file tree Collapse file tree 3 files changed +43
-21
lines changed Expand file tree Collapse file tree 3 files changed +43
-21
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
+ os :
15
+ - ubuntu-latest
16
+ - macOS-latest
17
+ - windows-latest
18
+ arch :
19
+ - x64
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+ - uses : julia-actions/setup-julia@v1
23
+ with :
24
+ version : ${{ matrix.version }}
25
+ arch : ${{ matrix.arch }}
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
+ - uses : julia-actions/julia-buildpkg@v1
37
+ - uses : julia-actions/julia-runtest@v1
38
+ - uses : julia-actions/julia-processcoverage@v1
39
+ - uses : codecov/codecov-action@v1
40
+ with :
41
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
A Julia repository for linear algebra with infinite banded and block-banded matrices
4
4
5
- [ ![ Build Status] ( https://travis-ci.org/JuliaMatrices/InfiniteLinearAlgebra.jl.svg?branch=master )] ( https://travis-ci.org/JuliaMatrices/InfiniteLinearAlgebra.jl )
5
+
6
+ [ ![ Build Status] ( https://github.com/JuliaMatrices/InfiniteLinearAlgebra.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaMatrices/InfiniteLinearAlgebra.jl/actions )
6
7
7
8
[ ![ codecov] ( https://codecov.io/gh/JuliaMatrices/InfiniteLinearAlgebra.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaMatrices/InfiniteLinearAlgebra.jl )
8
9
You can’t perform that action at this time.
0 commit comments