Skip to content

Commit b2a1f86

Browse files
committed
chore: Try out bash-5.0 from static-bash
1 parent 1cd5a30 commit b2a1f86

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,31 @@ jobs:
3737
- name: Test the project
3838
run: 'eldev -p -dtT test'
3939

40+
test-bash-5_0:
41+
runs-on: ubuntu-latest
42+
strategy:
43+
matrix:
44+
emacs_version:
45+
- '29.1'
46+
47+
steps:
48+
- name: Install Nix and set up Emacs
49+
uses: jcs090218/setup-emacs@master
50+
with:
51+
version: ${{matrix.emacs_version}}
52+
53+
- name: Install Bash 5.0
54+
run: |
55+
wget -o ./bash-5.0 https://github.com/robxu9/bash-static/releases/download/5.0/bash-linux
56+
chmod +x ./bash-5.0
57+
$PWD/bash-5.0 --version
58+
59+
- name: Install Eldev
60+
uses: emacs-eldev/setup-eldev@v1
61+
62+
- name: Check out the source code
63+
uses: actions/checkout@v4
64+
65+
- name: Test the project
66+
run: 'eldev -p -dtT test --bash=$PWD/bash-5.0'
67+

0 commit comments

Comments
 (0)