Merge pull request #384 from cryptorick/fix-version #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |