Skip to content

Commit b279127

Browse files
committed
ci: improve naming scheme of CI
1 parent bb793b3 commit b279127

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ on:
1212

1313
jobs:
1414
julia:
15-
name: Test (${{ matrix.os }}, julia ${{ matrix.jlversion }})
15+
name: test-${{ matrix.test-type }}-${{ matrix.os }}-jl${{ matrix.jlversion }}
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
fail-fast: true
1919
matrix:
2020
arch: [x64] # x86 unsupported by MicroMamba
2121
os: [ubuntu-latest, windows-latest, macos-latest]
2222
jlversion: ['1','1.6']
23+
test-type: ['unit']
2324
steps:
2425
- uses: actions/checkout@v2
2526
- name: Set up Julia ${{ matrix.jlversion }}
@@ -48,10 +49,11 @@ jobs:
4849
uses: julia-actions/julia-processcoverage@v1
4950
- name: Upload coverage to Codecov
5051
uses: codecov/codecov-action@v2
52+
if: ${{ matrix.test-type == 'unit' }}
5153
env:
5254
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5355
python:
54-
name: Test (${{ matrix.os }}, python ${{ matrix.pyversion }})
56+
name: test-${{ matrix.test-type }}-${{ matrix.os }}-py${{ matrix.pyversion }}
5557
runs-on: ${{ matrix.os }}
5658
strategy:
5759
fail-fast: true

0 commit comments

Comments
 (0)