branch: elpa/bash-completion
commit c564aff656fbcc63818de7f03a22b9b1c6e062e8
Author: Stephane Zermatten <[email protected]>
Commit: Stephane Zermatten <[email protected]>
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