Skip to content

Commit 95dd752

Browse files
committed
windows
1 parent 4acb569 commit 95dd752

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
- uses: msys2/setup-msys2@v2
1919
with:
2020
msystem: mingw64
21-
install: base-devel
21+
path-type: inherit
22+
install: make
2223
- uses: conda-incubator/setup-miniconda@v3
2324
with:
2425
python-version: 3.9
@@ -27,9 +28,10 @@ jobs:
2728
conda install -c conda-forge pandoc
2829
conda install -c anaconda jupyter
2930
curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh
30-
31-
# Make eldev available to all future actions
32-
echo "$HOME/.local/bin" >> $GITHUB_PATH
31+
- name: Add Eldev path
32+
shell: powershell
33+
run: |
34+
"$env:UserProfile\.local\bin" | Out-File $env:GITHUB_PATH
3335
- name: Check Jupyter version
3436
run: |
3537
mkdir -p $(jupyter --runtime-dir)
@@ -39,7 +41,7 @@ jobs:
3941
- name: Byte compilation
4042
shell: msys2 {0}
4143
run: |
42-
make compile
44+
make
4345
- name: Run tests
4446
shell: msys2 {0}
4547
run: |

0 commit comments

Comments
 (0)