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

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

[nongnu] elpa/bash-completion c564aff656 229/313: Add workflow for testi


From: ELPA Syncer
Subject: [nongnu] elpa/bash-completion c564aff656 229/313: Add workflow for testing on MacOS with BASH 3.
Date: Sat, 3 Dec 2022 10:59:33 -0500 (EST)

branch: elpa/bash-completion
commit c564aff656fbcc63818de7f03a22b9b1c6e062e8
Author: Stephane Zermatten <szermatt@gmx.net>
Commit: Stephane Zermatten <szermatt@gmx.net>

    Add workflow for testing on MacOS with BASH 3.
    
    This additional workflow exercise the code that's specific to bash 3.
    This makes sense, as support for bash 3 is only useful because it's
    still the version of bash that's default on MacOS.
---
 .github/workflows/test.yml | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c1ef082305..1bcac1b8f0 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -32,4 +32,21 @@ jobs:
 
     - name: Run tests (allow failure)
       if: matrix.allow_failure == true
-      run: 'cask && make test || true'
\ No newline at end of file
+      run: 'cask && make test || true'
+      
+  test-macos-bash3:
+    runs-on: macos-10.15
+    strategy:
+      matrix:
+        emacs_version:
+          - '26.3'
+    steps:
+    - uses: actions/checkout@v1
+    - uses: purcell/setup-emacs@master
+      with:
+        version: ${{ matrix.emacs_version }}
+    - uses: conao3/setup-cask@master
+
+    - name: Run tests
+      run: 'cask && make test'
+      
\ No newline at end of file



reply via email to

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