Add font lock tests for def and defn with metadata #175
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: CI | |
on: | |
push: | |
paths: ['**.el'] | |
pull_request: | |
paths: ['**.el'] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
# continue-on-error: ${{matrix.emacs_version == 'snapshot'}} | |
strategy: | |
matrix: | |
emacs_version: ['snapshot'] | |
steps: | |
- name: Set up Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{matrix.emacs_version}} | |
- name: Install Eldev | |
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh | |
- name: Check out the source code | |
uses: actions/checkout@v4 | |
- name: Compile the project | |
run: make compile | |
lint: | |
runs-on: ubuntu-latest | |
# continue-on-error: ${{matrix.emacs_version == 'snapshot'}} | |
strategy: | |
matrix: | |
emacs_version: ['29.1'] | |
steps: | |
- name: Set up Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{matrix.emacs_version}} | |
- name: Install Eldev | |
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh | |
- name: Check out the source code | |
uses: actions/checkout@v4 | |
- name: Lint the project | |
run: make lint | |
test: | |
runs-on: ubuntu-latest | |
# continue-on-error: ${{matrix.emacs_version == 'snapshot'}} | |
strategy: | |
matrix: | |
emacs_version: ['snapshot'] | |
steps: | |
- name: Set up Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{matrix.emacs_version}} | |
- name: Install Eldev | |
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh | |
- name: Check out the source code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: make test |