File tree Expand file tree Collapse file tree 4 files changed +38
-46
lines changed Expand file tree Collapse file tree 4 files changed +38
-46
lines changed Original file line number Diff line number Diff line change
1
+ name : Unit test
2
+
3
+ on :
4
+ create :
5
+ tags :
6
+ push :
7
+ branches :
8
+ - master
9
+ pull_request :
10
+ schedule :
11
+ - cron : ' 20 00 1 * *'
12
+
13
+ jobs :
14
+ test :
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ matrix :
18
+ julia-version : ['1.0', '1', 'nightly']
19
+ os : [ubuntu-latest, windows-latest, macOS-latest]
20
+
21
+ steps :
22
+
23
+ - name : " Set up Julia"
24
+ uses : julia-actions/setup-julia@v1
25
+ with :
26
+ version : ${{ matrix.julia-version }}
27
+
28
+ - name : " Unit Test"
29
+ uses : julia-actions/julia-runtest@master
30
+
31
+ # Unless tokenless upload is enabled, we can only submit coverage via
32
+ # environment variable. But PRs from other fork can't do that.
33
+ # See issue: https://github.com/julia-actions/julia-uploadcodecov/issues/1
Original file line number Diff line number Diff line change
1
+ # Until https://github.com/julia-actions/julia-uploadcodecov/issues/1 get fixed
2
+ # submit coverage report via travis
1
3
language : julia
2
4
os :
3
- - osx
4
5
- linux
5
6
julia :
6
7
- 1.0
7
- - 1
8
- - nightly
9
8
notifications :
10
9
email : false
11
10
Original file line number Diff line number Diff line change 1
1
# ImageCore
2
2
3
- [ ![ ] [ travis -img]] [ travis -url]
3
+ [ ![ ] [ action -img]] [ action -url]
4
4
[ ![ ] [ pkgeval-img ]] [ pkgeval-url ]
5
- [ ![ ] [ codecov-img ]] [ codecov-url ]
6
5
[ ![ ] [ docs-stable-img ]] [ docs-stable-url ]
7
6
[ ![ ] [ docs-dev-img ]] [ docs-dev-url ]
8
7
@@ -14,10 +13,8 @@ designed to support image processing and computer vision.
14
13
15
14
[ pkgeval-img ] : https://juliaci.github.io/NanosoldierReports/pkgeval_badges/I/ImageCore.svg
16
15
[ pkgeval-url ] : https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html
17
- [ travis-img ] : https://travis-ci.org/JuliaImages/ImageCore.jl.svg?branch=master
18
- [ travis-url ] : https://travis-ci.org/JuliaImages/ImageCore.jl
19
- [ codecov-img ] : https://codecov.io/github/JuliaImages/ImageCore.jl/coverage.svg?branch=master
20
- [ codecov-url ] : https://codecov.io/github/JuliaImages/ImageCore.jl?branch=master
16
+ [ action-img ] : https://github.com/JuliaImages/ImageCore.jl/workflows/Unit%20test/badge.svg
17
+ [ action-url ] : https://github.com/JuliaImages/ImageCore.jl/actions
21
18
[ docs-stable-img ] : https://img.shields.io/badge/docs-stable-blue.svg
22
19
[ docs-stable-url ] : https://JuliaImages.github.io/ImageCore.jl/stable
23
20
[ docs-dev-img ] : https://img.shields.io/badge/docs-dev-blue.svg
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments