Skip to content

Eglot support

Eglot support #1

Workflow file for this run

name: "Set up"
on:
push:
paths-ignore:
- "README.rst"
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
set_up:
runs-on: "ubuntu-latest"
continue-on-error: "${{ matrix.experimental }}"
strategy:
fail-fast: false
matrix:
emacs-version:
- "26.1"
- "26.2"
- "26.3"
- "27.1"
- "27.2"
- "28.1"
- "28.2"
- "29.1"
experimental: [false]
include:
- emacs-version: "snapshot"
experimental: true
steps:
- uses: "actions/checkout@v4"
- uses: "actions/cache@v3"
id: "emacs-cask-cache"
with:
path: |
/nix
~/.emacs.d
key: "emacs-${{ matrix.emacs-version }}-cask-${{ hashFiles('Cask') }}"
- if: ${{ steps.emacs-cask-cache.outputs.cache-hit != 'true' }

Check failure on line 44 in .github/workflows/setup.yml

View workflow run for this annotation

GitHub Actions / Set up

Invalid workflow file

The workflow is not valid. .github/workflows/setup.yml (Line: 44, Col: 13): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found. .github/workflows/setup.yml (Line: 49, Col: 13): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
uses: "purcell/setup-emacs@master"
with:
version: "${{ matrix.emacs-version }}"
- if: ${{ steps.emacs-cask-cache.outputs.cache-hit != 'true' }
uses: "cask/setup-cask@master"
with:
version: "0.9.0"
- uses: "./compile.yml"
with:
emacs-version: "${{ matrix.emacs-version }}"
- uses: "./test.yml"
with:
emacs-version: "${{ matrix.emacs-version }}"