emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/mmm-mode 5c985be5cb 7/9: Add GitHub Workflow for testin


From: ELPA Syncer
Subject: [elpa] externals/mmm-mode 5c985be5cb 7/9: Add GitHub Workflow for testing
Date: Thu, 27 Oct 2022 19:57:54 -0400 (EDT)

branch: externals/mmm-mode
commit 5c985be5cbc3dba8075030675f2a0cd50bac251c
Author: Ola Nilsson <ola.nilsson@gmail.com>
Commit: Ola Nilsson <ola.nilsson@gmail.com>

    Add GitHub Workflow for testing
---
 .github/workflows/test.yml | 52 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000000..ff2a6c8654
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,52 @@
+name: CI
+
+on:
+  workflow_dispatch:
+  pull_request:
+  push:
+    paths-ignore:
+    - 'AUTHORS'
+    - 'ChangeLog'
+    - 'Checklist'
+    - 'COPYING'
+    - '.elpaignore'
+    - 'FAQ'
+    - 'NEWS'
+    - 'README'
+    - 'README.Mason'
+    - 'TODO'
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    continue-on-error: ${{ matrix.experimental }}
+    strategy:
+      matrix:
+        emacs_version:
+          - 25.1
+          - 25.2
+          - 25.3
+          - 26.1
+          - 26.2
+          - 26.3
+          - 27.1
+          - 27.2
+          - 28.1
+          - 28.2
+        experimental: [false]
+        include:
+          - emacs_version: snapshot
+            experimental: true
+    steps:
+    - uses: purcell/setup-emacs@master
+      with:
+        version: ${{ matrix.emacs_version }}
+
+    - uses: actions/checkout@v3
+    - name: Compile and Build Docs
+      run: make all docs -j2
+      shell: bash -ev {0}
+    - name: Run tests
+      run: make check
+      shell: bash -ev {0}
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]