File tree Expand file tree Collapse file tree 3 files changed +61
-18
lines changed Expand file tree Collapse file tree 3 files changed +61
-18
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ branches : [master]
5+ tags : ["*"]
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+ strategy :
12+ fail-fast : false
13+ matrix :
14+ version :
15+ - ' 1.0'
16+ - ' 1'
17+ - nightly
18+ os :
19+ - ubuntu-latest
20+ arch :
21+ - x64
22+ - x86
23+ include :
24+ - os : macOS-latest
25+ arch : x64
26+ version : 1
27+ - os : windows-latest
28+ arch : x64
29+ version : 1
30+ - os : windows-latest
31+ arch : x86
32+ version : 1
33+ steps :
34+ - uses : actions/checkout@v2
35+ - uses : julia-actions/setup-julia@v1
36+ with :
37+ version : ${{ matrix.version }}
38+ arch : ${{ matrix.arch }}
39+ - uses : actions/cache@v1
40+ env :
41+ cache-name : cache-artifacts
42+ with :
43+ path : ~/.julia/artifacts
44+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
45+ restore-keys : |
46+ ${{ runner.os }}-test-${{ env.cache-name }}-
47+ ${{ runner.os }}-test-
48+ ${{ runner.os }}-
49+ - uses : julia-actions/julia-buildpkg@v1
50+ - uses : julia-actions/julia-runtest@v1
51+ - uses : julia-actions/julia-processcoverage@v1
52+ - uses : codecov/codecov-action@v1
53+ with :
54+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11name = " PDMats"
22uuid = " 90014a1f-27ba-587c-ab20-58faa44d9150"
3- version = " 0.10.1 "
3+ version = " 0.11.0 "
44
55[deps ]
66LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
77SparseArrays = " 2f01184e-e22b-5df5-ae63-d93ebab69eaf"
88SuiteSparse = " 4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
9- Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
109
1110[compat ]
1211julia = " 1"
12+
13+ [extras ]
14+ Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
15+
16+ [targets ]
17+ test = [" Test" ]
You can’t perform that action at this time.
0 commit comments