Skip to content

Push.

Push. #30

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * *'
# - schedule:
# - cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# Emacs 27.x spits out errors during package-lint. Ignore those
# warnings.
- emacs_version: 27.1
warnings_as_errors: false
- emacs_version: 27.2
warnings_as_errors: false
# All other Emacs versions should have no warnings.
- emacs_version: 28.1
warnings_as_errors: true
- emacs_version: 28.2
warnings_as_errors: true
- emacs_version: 29.1
warnings_as_errors: true
steps:
- uses: purcell/[email protected]
with:
version: ${{ matrix.emacs_version }}
- uses: actions/checkout@v4
- uses: leotaku/elisp-check@master
with:
check: melpa
file: '*.el'
warnings_as_errors: ${{ matrix.warnings_as_errors }}