Skip to content

Commit 2a0d1c6

Browse files
committed
debug
1 parent 40e966a commit 2a0d1c6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ jobs:
55
matrix:
66
os: [ubuntu-latest, macos-latest, windows-latest]
77
emacs-version: [27.2, 28.2, 29.3, snapshot]
8+
exclude:
9+
- os: macos-latest
10+
emacs-version: 27.2
811
defaults:
912
run:
1013
shell: bash -el {0}
@@ -20,6 +23,10 @@ jobs:
2023
with:
2124
version: ${{ matrix.emacs-version }}
2225
if: ${{ matrix.os == 'windows-latest' }}
26+
- uses: msys2/setup-msys2@v2
27+
with:
28+
msystem: MSYS
29+
if: ${{ matrix.os == 'windows-latest' }}
2330
- uses: conda-incubator/setup-miniconda@v3
2431
with:
2532
python-version: 3.9
@@ -38,8 +45,10 @@ jobs:
3845
jupyter --version
3946
jupyter kernelspec list
4047
- name: Byte compilation
48+
shell: ${{ matrix.os != 'window-latest' && 'bash -el {0}' || 'msys2 {0}' }}
4149
run: |
4250
make compile
4351
- name: Run tests
52+
shell: ${{ matrix.os != 'window-latest' && 'bash -el {0}' || 'msys2 {0}' }}
4453
run: |
4554
make test

0 commit comments

Comments
 (0)