branch: elpa/bash-completion commit b2a1f86beff60fbc9ff5f14745d40ddc741bfbb8 Author: Stephane Zermatten <szerm...@gmx.net> Commit: Stephane Zermatten <szerm...@gmx.net>
chore: Try out bash-5.0 from static-bash --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c7b971d566..ab9b02c51d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,3 +37,31 @@ jobs: - name: Test the project run: 'eldev -p -dtT test' + test-bash-5_0: + runs-on: ubuntu-latest + strategy: + matrix: + emacs_version: + - '29.1' + + steps: + - name: Install Nix and set up Emacs + uses: jcs090218/setup-emacs@master + with: + version: ${{matrix.emacs_version}} + + - name: Install Bash 5.0 + run: | + wget -o ./bash-5.0 https://github.com/robxu9/bash-static/releases/download/5.0/bash-linux + chmod +x ./bash-5.0 + $PWD/bash-5.0 --version + + - name: Install Eldev + uses: emacs-eldev/setup-eldev@v1 + + - name: Check out the source code + uses: actions/checkout@v4 + + - name: Test the project + run: 'eldev -p -dtT test --bash=$PWD/bash-5.0' +