mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-13 05:03:03 +00:00

Cask has seemingly stopped properly supporting these versions as indicated by the commit cask/cask@685c4c1.
37 lines
768 B
YAML
37 lines
768 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
emacs_version:
|
|
- 25.1
|
|
- 25.2
|
|
- 25.3
|
|
- 26.1
|
|
- 26.2
|
|
- 26.3
|
|
- 27.2
|
|
- 28.1
|
|
- snapshot
|
|
steps:
|
|
- uses: purcell/setup-emacs@master
|
|
with:
|
|
version: ${{ matrix.emacs_version }}
|
|
- name: Install Cask
|
|
run: git clone https://github.com/cask/cask ~/.cask
|
|
- name: Add Cask to PATH
|
|
run: echo "$HOME/.cask/bin" >> $GITHUB_PATH
|
|
- uses: actions/checkout@v3
|
|
- name: Install dependencies with Cask
|
|
run: cask
|
|
- name: Run tests
|
|
run: script -e -c /bin/bash -c 'TERM=xterm ./run-tests.sh'
|