|
1 | 1 | on: push
|
2 | 2 | jobs:
|
3 |
| - test: |
| 3 | + test-windows: |
4 | 4 | strategy:
|
5 | 5 | matrix:
|
6 |
| - os: [ubuntu-latest, macos-latest, windows-latest] |
7 | 6 | 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 |
8 | 51 | defaults:
|
9 | 52 | run:
|
10 | 53 | shell: bash -el {0}
|
|
15 | 58 | - uses: purcell/setup-emacs@master
|
16 | 59 | with:
|
17 | 60 | 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' }} |
23 | 61 | - uses: conda-incubator/setup-miniconda@v3
|
24 | 62 | with:
|
25 | 63 | python-version: 3.9
|
|
0 commit comments