OK, so try asking for xr's location branch #52
Workflow file for this run
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: test | |
on: | |
push: | |
paths-ignore: | |
- '**README*' | |
pull_request: | |
paths-ignore: | |
- '**README*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- "27.2" | |
- "28.2" | |
- "29.3" | |
- snapshot | |
steps: | |
- name: Set up Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{matrix.emacs_version}} | |
- name: Check out relint | |
uses: actions/checkout@v4 | |
with: | |
path: relint | |
- name: Check out xr | |
uses: actions/checkout@v4 | |
with: | |
repository: mattiase/xr | |
path: xr | |
# FIXME: remove this when xr's branch has been merged | |
ref: location | |
- name: Byte-compile | |
run: make -C relint build | |
- name: Test | |
run: make -C relint check |