Skip to content

Commit dbbe725

Browse files
authored
Update python-package-conda.yml
1 parent e600780 commit dbbe725

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test:
10-
name: ${{ matrix.platform }} (${{ matrix.python-version }})
10+
name: Run Tests
1111
runs-on: ${{ matrix.os}}
1212
strategy:
1313
fail-fast: false
@@ -42,10 +42,12 @@ jobs:
4242
conda info -a
4343
conda list
4444
PYVER=`python -c "import sys; print('{:d}.{:d}'.format(sys.version_info.major, sys.version_info.minor))"`
45-
if [[ $PYVER != $PYTHON ]]; then
45+
if [[ $PYVER != ${{ matrix.python-version }} ]]; then
4646
exit 1;
4747
fi
4848
49+
50+
4951
- name: Install
5052
run: |
5153
pip install .

0 commit comments

Comments
 (0)