File tree Expand file tree Collapse file tree 4 files changed +56
-66
lines changed Expand file tree Collapse file tree 4 files changed +56
-66
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ paths-ignore :
7
+ - ' LICENSE.md'
8
+ - ' README.md'
9
+ - ' .github/workflows/CompatHelper.yml'
10
+ - ' .github/workflows/TagBot.yml'
11
+ tags : ' *'
12
+ pull_request :
13
+ branches :
14
+ - master
15
+ paths-ignore :
16
+ - ' LICENSE.md'
17
+ - ' README.md'
18
+ - ' .github/workflows/CompatHelper.yml'
19
+ - ' .github/workflows/TagBot.yml'
20
+ jobs :
21
+ test :
22
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
23
+ runs-on : ${{ matrix.os }}
24
+ strategy :
25
+ fail-fast : false
26
+ matrix :
27
+ version :
28
+ - ' 1'
29
+ os :
30
+ - ubuntu-latest
31
+ arch :
32
+ - x64
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 1
1
# ModelingToolkit.jl
2
2
3
- [ ![ Build Status] ( https://travis-ci.com/SciML/ModelingToolkit.jl.svg?branch=master )] ( https://travis-ci.com/SciML/ModelingToolkit.jl )
4
- [ ![ Coverage Status] ( https://coveralls.io/repos/SciML/ModelingToolkit.jl/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/JuliaDiffEq/ModelingToolkit.jl?branch=master )
5
- [ ![ codecov.io] ( http://codecov.io/github/SciML/ModelingToolkit.jl/coverage.svg?branch=master )] ( http://codecov.io/github/SciML/ModelingToolkit.jl?branch=master )
3
+ [ ![ Github Action CI] ( https://github.com/SciML/ModelingToolkit.jl/workflows/CI/badge.svg )] ( https://github.com/SciML/ModelingToolkit.jl/actions )
4
+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/SciML/ModelingToolkit.jl/badge.svg?branch=master )] ( https://coveralls.io/github/SciML/ModelingToolkit.jl?branch=master )
6
5
[ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( http://mtk.sciml.ai/stable/ )
7
6
[ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( http://mtk.sciml.ai/dev/ )
8
7
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments