[B] #1841 Document missing commands in PROTOCOL.md #462
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Emacs lint | ||
on: | ||
push: | ||
paths: | ||
- 'emacs/**' | ||
- '**/emacs-lint.yml' | ||
pull_request: | ||
paths: | ||
- 'emacs/**' | ||
- '**/emacs-lint.yml' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
emacs_version: | ||
- '27.2' | ||
- '28.2' | ||
- '29.1' | ||
- snapshot | ||
fail-fast: false # don't stop jobs if one fails | ||
env: | ||
EMACS_PACKAGE_LINT_IGNORE: ${{ matrix.package_lint_ignore }} | ||
EMACS_BYTECOMP_WARN_IGNORE: ${{ matrix.bytecomp_warn_ignore }} | ||
steps: | ||
- uses: purcell/setup-emacs@master | ||
with: | ||
version: ${{ matrix.emacs_version }} | ||
- uses: actions/checkout@v2 | ||
- name: Run tests | ||
continue-on-error: true | ||
run: 'cd emacs && ./check.sh' |