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

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

[elpa] externals/llm 97e5604fc7 5/6: Separate tests from other checks


From: ELPA Syncer
Subject: [elpa] externals/llm 97e5604fc7 5/6: Separate tests from other checks
Date: Fri, 23 Feb 2024 22:02:35 -0500 (EST)

branch: externals/llm
commit 97e5604fc72d6460a0ab17d168c266e0cf3a98b2
Author: Sergey Kostyaev <kostyaev.sergey2@wb.ru>
Commit: Sergey Kostyaev <kostyaev.sergey2@wb.ru>

    Separate tests from other checks
---
 .github/workflows/melpa.yml | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/melpa.yml b/.github/workflows/melpa.yml
index 691ef316e5..8ce4adcc78 100644
--- a/.github/workflows/melpa.yml
+++ b/.github/workflows/melpa.yml
@@ -31,7 +31,6 @@ jobs:
           - false
         check:
           - melpa
-          - ert
         file:
           - '*.el'
     # Steps represent a sequence of tasks that will be executed as part of the 
job
@@ -46,3 +45,33 @@ jobs:
           file: ${{ matrix.file }}
           ignore_warnings: ${{ matrix.ignore_warnings }}
           warnings_as_errors: ${{ matrix.warnings_as_errors }}
+  test-ert:
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      matrix:
+        emacs_version:
+          - 28.1
+          - 28.2
+          - 29.1
+          - 29.2
+        ignore_warnings:
+          - false
+        warnings_as_errors:
+          - false
+        check:
+          - ert
+        file:
+          - '*test.el'
+    # Steps represent a sequence of tasks that will be executed as part of the 
job
+    steps:
+      - uses: actions/checkout@v4
+      - uses: purcell/setup-emacs@master
+        with:
+          version: ${{ matrix.emacs_version }}
+      - uses: leotaku/elisp-check@master
+        with:
+          check: ${{ matrix.check }}
+          file: ${{ matrix.file }}
+          ignore_warnings: ${{ matrix.ignore_warnings }}
+          warnings_as_errors: ${{ matrix.warnings_as_errors }}



reply via email to

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