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

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

[elpa] externals/bnf-mode 8487e3d 01/22: Specify matrix rows that are al


From: Stefan Monnier
Subject: [elpa] externals/bnf-mode 8487e3d 01/22: Specify matrix rows that are allowed to fail
Date: Tue, 3 Mar 2020 10:56:52 -0500 (EST)

branch: externals/bnf-mode
commit 8487e3d2db07d4b6e6fc83cfaab9ec0d687fc988
Author: Serghei Iakovlev <address@hidden>
Commit: Serghei Iakovlev <address@hidden>

    Specify matrix rows that are allowed to fail
---
 .github/workflows/build.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b3c98dd..6e63292 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -48,6 +48,9 @@ jobs:
           - '26.2'
           - '26.3'
           - snapshot
+        include:
+          - emacs_version: snapshot
+            allow_failure: true
 
     steps:
       - name: Checkout Code
@@ -85,8 +88,13 @@ jobs:
         run: make checkdoc
 
       - name: Run Unit Tests
+        if: matrix.allow_failure != true
         run: make test
 
+      - name: Run Unit Tests
+        if: matrix.allow_failure == true
+        run: 'make test || true'
+
       - name: After Success Reporting
         if: success()
         run: git log --format=fuller -5



reply via email to

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