Skip to content

fix(ci): build with version 29.1 #279

fix(ci): build with version 29.1

fix(ci): build with version 29.1 #279

Workflow file for this run

name: Verify
on:
push:
branches:
- trunk
paths-ignore:
- '.dir-locals.el'
- '.gitignore'
- 'CHANGELOG.md'
- 'README.org'
- 'assets/**'
- 'commitlint.config.js'
- 'data/**'
- 'package-lock.json'
- 'package.json'
- 'proselintrc.json'
- 'tools/update-version.sh'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set environment to allow unsecure commands
run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV
- name: Get Emacs
uses: purcell/setup-emacs@master
with:
version: 29.1
- name: Get Cask
uses: conao3/setup-cask@master
with:
version: snapshot
- name: Check out the repository
uses: actions/checkout@v3
with:
submodules: true
- name: Tangle and install dependencies with Cask
run: make
- name: Run tests
run: make test
- name: Submit coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run byte-compiler check (allowed to fail)
continue-on-error: ${{ !contains(github.event.head_commit.message, 'release') }}
run: make pacify
- name: Simulate cold boot
if: contains(github.event.head_commit.message, 'release')
run: make cold-boot