mirror of
https://github.com/correl/org-roam-export-backlinks.git
synced 2025-03-18 17:00:11 -09:00
34 lines
612 B
YAML
34 lines
612 B
YAML
|
name: CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths-ignore:
|
||
|
- '**.org'
|
||
|
pull_request:
|
||
|
paths-ignore:
|
||
|
- '**.org'
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
emacs_version:
|
||
|
- 26.3
|
||
|
|
||
|
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@v2
|
||
|
|
||
|
- name: Test the project
|
||
|
run: |
|
||
|
eldev -p -dtT test
|