Skip to content

Commit 813572f

Browse files
committed
New job name format
1 parent a19c501 commit 813572f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ on: [push, pull_request]
44

55
jobs:
66
test-linux:
7-
name: Python ${{ matrix.python-version }}${{ matrix.slycot && format(' with Slycot from {0}', matrix.slycot) || ' without Slycot' }}${{ matrix.pandas && ', with pandas' || '' }}${{ matrix.array-and-matrix == 1 && ', array and matrix' || '' }}${{ matrix.cvxopt && format(' with cvxopt from {0}', matrix.cvxopt) || ' without cvxopt' }}
7+
name: >
8+
Python ${{ matrix.python-version }};
9+
${{ matrix.slycot || 'without' }} Slycot;
10+
${{ matrix.pandas || 'without' }} Pandas;
11+
${{ matrix.cvxopt || 'without' }} CVXOPT;
12+
${{ matrix.array-and-matrix == 1 && '; array and matrix' || '' }}
813
runs-on: ubuntu-latest
914

1015
strategy:

0 commit comments

Comments
 (0)