MELPA CI checks
This commit is contained in:
parent
d8296a9af5
commit
36eae66a3c
1 changed files with 16 additions and 3 deletions
19
.github/workflows/test.yml
vendored
19
.github/workflows/test.yml
vendored
|
@ -7,6 +7,7 @@ on:
|
|||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- '**.org'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
@ -15,21 +16,33 @@ jobs:
|
|||
matrix:
|
||||
emacs_version:
|
||||
- 27.2
|
||||
- 26.3
|
||||
- 25.3
|
||||
|
||||
- 28.1
|
||||
- snapshot
|
||||
steps:
|
||||
- name: Set up Emacs
|
||||
uses: purcell/setup-emacs@master
|
||||
with:
|
||||
version: ${{matrix.emacs_version}}
|
||||
|
||||
- name: Install w3m
|
||||
run: sudo apt-get install -y w3m
|
||||
|
||||
- name: Install Eldev
|
||||
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
|
||||
|
||||
- name: Check out the elisp source code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# - name: Lint source code with elisp-lint
|
||||
# run: |
|
||||
# cd el
|
||||
# eldev -p -dtT -q lint elisp-lint
|
||||
|
||||
- name: Lint documentation with checkdoc
|
||||
run: |
|
||||
cd el
|
||||
eldev -p -dtT lint doc
|
||||
|
||||
- name: Test the uncompiled source
|
||||
run: |
|
||||
cd el
|
||||
|
|
Loading…
Reference in a new issue