summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorGravatar Nicolas Petton2021-03-16 21:01:39 +0100
committerGravatar GitHub2021-03-16 21:01:39 +0100
commit12d90831bbfd590f3c9090b6575826f3ff34765d (patch)
treeddb347cf5d94cf58adfd2827b4b14981ef4bcfc8 /.github/workflows/test.yml
parent72bc00f3ec82fea8648a7fc7848c5ee1bfefe57e (diff)
parentbded83df3bba63ea6336eeec7191eced23c26653 (diff)
downloadnroam-12d90831bbfd590f3c9090b6575826f3ff34765d.tar.gz
nroam-12d90831bbfd590f3c9090b6575826f3ff34765d.zip
Merge pull request #16 from DamienCassou/add-makefile
Facilitate building and checking
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..3e2d1c4
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,26 @@
+name: CI
+
+on:
+ pull_request:
+ push:
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ emacs_version:
+ - 27.1
+ steps:
+ - name: Set up Emacs
+ uses: purcell/setup-emacs@master
+ with:
+ version: ${{matrix.emacs_version}}
+
+ - name: Check out the source code
+ uses: actions/checkout@v2
+
+ - name: Test the project
+ run: |
+ make ci-dependencies
+ make check