mirror of
https://github.com/correl/org-roam-export-backlinks.git
synced 2024-11-24 03:00:12 +00:00
33 lines
612 B
YAML
33 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
|