Skip to content

Commit 92c1630

Browse files
committed
debug
1 parent 40e966a commit 92c1630

File tree

1 file changed

+45
-7
lines changed

1 file changed

+45
-7
lines changed

.github/workflows/test.yml

+45-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,53 @@
11
on: push
22
jobs:
3-
test:
3+
test-windows:
44
strategy:
55
matrix:
6-
os: [ubuntu-latest, macos-latest, windows-latest]
76
emacs-version: [27.2, 28.2, 29.3, snapshot]
7+
runs-on: windows-latest
8+
defaults:
9+
run:
10+
shell: msys2 {0}
11+
continue-on-error: true
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: jcs090218/setup-emacs-windows@master
15+
with:
16+
version: ${{ matrix.emacs-version }}
17+
- uses: msys2/setup-msys2@v2
18+
with:
19+
msystem: MSYS
20+
- uses: conda-incubator/setup-miniconda@v3
21+
with:
22+
python-version: 3.9
23+
- name: Install requirements
24+
run: |
25+
conda install -c conda-forge pandoc
26+
conda install -c anaconda jupyter
27+
curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh
28+
29+
# Make eldev available to all future actions
30+
echo "$HOME/.local/bin" >> $GITHUB_PATH
31+
- name: Check Jupyter version
32+
run: |
33+
mkdir -p $(jupyter --runtime-dir)
34+
jupyter --paths
35+
jupyter --version
36+
jupyter kernelspec list
37+
- name: Byte compilation
38+
run: |
39+
make compile
40+
- name: Run tests
41+
run: |
42+
make test
43+
test-unix-like:
44+
strategy:
45+
matrix:
46+
os: [ubuntu-latest, macos-latest]
47+
emacs-version: [27.2, 28.2, 29.3, snapshot]
48+
exclude:
49+
- os: macos-latest
50+
emacs-version: 27.2
851
defaults:
952
run:
1053
shell: bash -el {0}
@@ -15,11 +58,6 @@ jobs:
1558
- uses: purcell/setup-emacs@master
1659
with:
1760
version: ${{ matrix.emacs-version }}
18-
if: ${{ matrix.os != 'windows-latest' }}
19-
- uses: jcs090218/setup-emacs-windows@master
20-
with:
21-
version: ${{ matrix.emacs-version }}
22-
if: ${{ matrix.os == 'windows-latest' }}
2361
- uses: conda-incubator/setup-miniconda@v3
2462
with:
2563
python-version: 3.9

0 commit comments

Comments
 (0)