mirror of
https://github.com/correl/org-roam-export-backlinks.git
synced 2024-11-14 11:09:33 +00:00
Add github test workflow
This commit is contained in:
parent
6cebce6e81
commit
74304e45c1
1 changed files with 33 additions and 0 deletions
33
.github/workflows/test.yml
vendored
Normal file
33
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
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
|
Loading…
Reference in a new issue