1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-23 08:20:41 -08:00
emacs/.github/workflows/test.yml
Justin Burkett e048b2ae6b Stop testing against v24.5
It's old enough now
2020-08-28 10:24:31 -04:00

30 lines
581 B
YAML

name: which-key-test
on:
pull_request:
push:
branches:
- master
schedule:
- cron: '0 0 1 * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- 25.1
- 25.2
- 25.3
- 26.1
- 26.2
- 26.3
- snapshot
steps:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- uses: actions/checkout@v2
- name: Run tests
run: 'emacs -Q -batch -L . -l which-key-tests.el -f ert-run-tests-batch-and-exit'