Skip to content

debug

debug #101

Workflow file for this run

on: push
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version: [27.2, 28.2, 29.3, snapshot]
exclude:
- os: macos-latest
emacs-version: 27.2
defaults:
run:
shell: bash -el {0}
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
if: ${{ matrix.os != 'windows-latest' }}
- uses: jcs090218/setup-emacs-windows@master
with:
version: ${{ matrix.emacs-version }}
if: ${{ matrix.os == 'windows-latest' }}
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
if: ${{ matrix.os == 'windows-latest' }}
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
- name: Install requirements
run: |
conda install -c conda-forge pandoc
conda install -c anaconda jupyter
curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh
# Make eldev available to all future actions
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Check Jupyter version
run: |
mkdir -p $(jupyter --runtime-dir)
jupyter --paths
jupyter --version
jupyter kernelspec list
- name: Byte compilation
shell: ${{ matrix.os != 'window-latest' && 'bash -el {0}' || 'msys2 {0}' }}

Check failure on line 48 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 48, Col: 16): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.os != 'window-latest' && 'bash -el {0}' || 'msys2 {0}' .github/workflows/test.yml (Line: 52, Col: 16): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.os != 'window-latest' && 'bash -el {0}' || 'msys2 {0}'
run: |
make compile
- name: Run tests
shell: ${{ matrix.os != 'window-latest' && 'bash -el {0}' || 'msys2 {0}' }}
run: |
make test