Skip to content

Commit 71671cc

Browse files
authored
Update win_test.yml
fix syntax before 1st test
1 parent f78a338 commit 71671cc

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/win_test.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ defaults:
2020
jobs:
2121
build:
2222
strategy:
23-
fail-fast: false
23+
#fail-fast: false
2424
matrix:
25-
# env: ['py313']
26-
env: ['py310', 'py311', 'py312', 'py313']
25+
env: ['py313']
26+
# env: ['py310', 'py311', 'py312', 'py313']
2727
runs-on: 'windows-latest'
2828
steps:
2929
- name: Get conda
@@ -36,7 +36,8 @@ jobs:
3636

3737
# configure conda
3838
- name: config python
39-
if [ ${{ matrix.env }} == 'py313' ]; then
40-
npver=2.2
41-
fi
42-
run: conda install numpy={$npver} scipy requests pytest
39+
run: |
40+
if [ "${{ matrix.env }}" == "py313" ]; then
41+
npver=2.2
42+
fi
43+
conda install numpy={$npver} scipy requests pytest

0 commit comments

Comments
 (0)