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:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**.md'
|
||||||
|
- '**.org'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
@ -15,21 +16,33 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
emacs_version:
|
emacs_version:
|
||||||
- 27.2
|
- 27.2
|
||||||
- 26.3
|
- 28.1
|
||||||
- 25.3
|
- snapshot
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Emacs
|
- name: Set up Emacs
|
||||||
uses: purcell/setup-emacs@master
|
uses: purcell/setup-emacs@master
|
||||||
with:
|
with:
|
||||||
version: ${{matrix.emacs_version}}
|
version: ${{matrix.emacs_version}}
|
||||||
|
|
||||||
|
- name: Install w3m
|
||||||
|
run: sudo apt-get install -y w3m
|
||||||
|
|
||||||
- name: Install Eldev
|
- name: Install Eldev
|
||||||
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
|
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
|
||||||
|
|
||||||
- name: Check out the elisp source code
|
- name: Check out the elisp source code
|
||||||
uses: actions/checkout@v2
|
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
|
- name: Test the uncompiled source
|
||||||
run: |
|
run: |
|
||||||
cd el
|
cd el
|
||||||
|
|
Loading…
Reference in a new issue