Skip to content

Enable more warnings and coredump in Makefile #74

Enable more warnings and coredump in Makefile

Enable more warnings and coredump in Makefile #74

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- '**.md'
push:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
emacs_version: [27.2, 28.2, 29.3, snapshot]
python_version: [3.12.4, 3.x]
include:
- os: macos-latest
emacs_version: snapshot
python_version: 3.x
steps:
- uses: actions/checkout@v4
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
- run: 'pip install -r requirements.txt'
- run: 'make test'