Remove 24.5 from CI. #42
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs-version: [25.3, 26.3, 27.2, 28.2, 29.1] | |
experimental: [false] | |
include: | |
- emacs-version: snapshot | |
experimental: true | |
steps: | |
- name: setenv | |
run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs-version }} | |
- uses: conao3/setup-cask@master | |
with: | |
version: 'snapshot' | |
- name: install | |
run: "cask install" | |
- name: build | |
run: "cask build" | |
- name: package | |
run: "cask package" |