Skip to content

Commit e06b08f

Browse files
committed
try to fix the yml
1 parent 489a972 commit e06b08f

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/buildwheels.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,20 +67,21 @@ jobs:
6767
with:
6868
python-version: "3.13"
6969

70-
- name: Run example notebooks
71-
if: matrix.os == 'windows-latest'
70+
- if: matrix.os == 'windows-latest'
7271
run: |
7372
cd dist
7473
$temp = "$(gci -r -fi "*cp313*.whl")[examples]"
7574
python -m pip install $temp.toString()
7675
cd ..
7776
78-
if: startsWith(matrix.os, 'macos-') || startsWith(matrix.os, 'ubuntu-')
77+
- if: startsWith(matrix.os, 'macos-') || startsWith(matrix.os, 'ubuntu-')
7978
run: |
8079
cd dist
8180
temp=`find . -name "*cp313*.whl"`
8281
python -m pip install $temp[examples]
8382
cd ..
83+
84+
- name: Run example notebooks
8485
ex -sc 'g/^PyPartMC/d' -cx .binder/requirements.txt
8586
python -m pip install --force-reinstall --no-deps $PIP_INSTALL_OPTS -r .binder/requirements.txt
8687
python -m pip install matplotlib ipywidgets PySDM open_atmos_jupyter_utils

0 commit comments

Comments
 (0)