File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
julia :
15
- name : Test ( ${{ matrix.os }}, julia ${{ matrix.jlversion }})
15
+ name : test- ${{ matrix.test-type }}-${{ matrix.os }}-jl ${{ matrix.jlversion }}
16
16
runs-on : ${{ matrix.os }}
17
17
strategy :
18
18
fail-fast : true
19
19
matrix :
20
20
arch : [x64] # x86 unsupported by MicroMamba
21
21
os : [ubuntu-latest, windows-latest, macos-latest]
22
22
jlversion : ['1','1.6']
23
+ test-type : ['unit']
23
24
steps :
24
25
- uses : actions/checkout@v2
25
26
- name : Set up Julia ${{ matrix.jlversion }}
@@ -48,10 +49,11 @@ jobs:
48
49
uses : julia-actions/julia-processcoverage@v1
49
50
- name : Upload coverage to Codecov
50
51
uses : codecov/codecov-action@v2
52
+ if : ${{ matrix.test-type == 'unit' }}
51
53
env :
52
54
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
53
55
python :
54
- name : Test ( ${{ matrix.os }}, python ${{ matrix.pyversion }})
56
+ name : test- ${{ matrix.test-type }}-${{ matrix.os }}-py ${{ matrix.pyversion }}
55
57
runs-on : ${{ matrix.os }}
56
58
strategy :
57
59
fail-fast : true
You can’t perform that action at this time.
0 commit comments