File tree Expand file tree Collapse file tree 5 files changed +49
-61
lines changed Expand file tree Collapse file tree 5 files changed +49
-61
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
+ fail-fast : false
18
+ matrix :
19
+ julia-version : ['1.0', '1', 'nightly']
20
+ os : [ubuntu-latest, windows-latest, macOS-latest]
21
+
22
+ steps :
23
+ - uses : actions/checkout@2
24
+ - name : " Set up Julia"
25
+ uses : julia-actions/setup-julia@v1
26
+ with :
27
+ version : ${{ matrix.julia-version }}
28
+
29
+ - name : Cache artifacts
30
+ uses : actions/cache@v1
31
+ env :
32
+ cache-name : cache-artifacts
33
+ with :
34
+ path : ~/.julia/artifacts
35
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36
+ restore-keys : |
37
+ ${{ runner.os }}-test-${{ env.cache-name }}-
38
+ ${{ runner.os }}-test-
39
+ ${{ runner.os }}-
40
+
41
+ - name : " Unit Test"
42
+ uses : julia-actions/julia-runtest@master
43
+
44
+ - uses : julia-actions/julia-processcoverage@v1
45
+ - uses : codecov/codecov-action@v1
46
+ with :
47
+ file : lcov.info
Original file line number Diff line number Diff line change 1
1
* .jl.cov
2
2
* .jl. * .cov
3
3
* .jl.mem
4
+ /Manifest.toml
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# ColorVectorSpace
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /JuliaGraphics/ColorVectorSpace.jl.svg?branch=master )] ( https://travis-ci.org /JuliaGraphics/ColorVectorSpace.jl )
3
+ [ ![ Build Status] ( https://github.com /JuliaGraphics/ColorVectorSpace.jl/workflows/Unit%20test/badge .svg )] ( https://github.com /JuliaGraphics/ColorVectorSpace.jl/actions )
4
4
[ ![ codecov.io] ( http://codecov.io/github/JuliaGraphics/ColorVectorSpace.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaGraphics/ColorVectorSpace.jl?branch=master )
5
5
6
6
This package is an add-on to [ ColorTypes] ( https://github.com/JuliaGraphics/ColorTypes.jl ) , and provides fast
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments