This repository was archived by the owner on Jun 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +33
-61
lines changed Expand file tree Collapse file tree 4 files changed +33
-61
lines changed 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
# SparsityDetection.jl
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/SciML/SparsityDetection.jl.svg?branch=master )] ( https://travis-ci.org/SciML/SparsityDetection.jl )
4
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/iruuqu4hxq00vo3s?svg=true )] ( https://ci.appveyor.com/project/ChrisRackauckas/sparsitydetection-jl )
3
+ [ ![ Build Status] ( https://github.com/SciML/SparsityDetection.jl/workflows/CI/badge.svg )] ( https://github.com/SciML/SparsityDetection.jl/actions?query=workflow%3ACI )
5
4
6
5
This is a package for automatic Jacobian and Hessian sparsity pattern detection
7
6
on Julia functions. Functions written for numerical work can automatically be
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments