branch: elpa/paredit
commit c26db503c2d92a248dfbb590cb9742c119aac810
Author: Taylor R Campbell <campb...@paredit.org>
Commit: Taylor R Campbell <campb...@paredit.org>

    Add GitHub Action to run tests on ubuntu-latest.
---
 .github/workflows/ubuntu-latest.yml | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/.github/workflows/ubuntu-latest.yml 
b/.github/workflows/ubuntu-latest.yml
new file mode 100644
index 0000000000..79004c8a75
--- /dev/null
+++ b/.github/workflows/ubuntu-latest.yml
@@ -0,0 +1,28 @@
+name: paredit test
+
+on:
+  push:
+    paths-ignore:
+    - .gitignore
+    - COPYING
+    - CREDITS
+    - NEWS
+  pull_request:
+    paths-ignore:
+    - .gitignore
+    - COPYING
+    - CREDITS
+    - NEWS
+
+jobs:
+  check:
+    runs-on: ubuntu-latest
+    steps:
+    - name: checkout
+      uses: actions/checkout@v3
+    - name: install emacs
+      run: >
+        sudo apt-get update &&
+        sudo apt-get install emacs
+    - name: check.sh
+      run: ./check.sh

Reply via email to