Skip to content

Commit bb2608a

Browse files
committed
chore: Update bash 5.0 test, using RUNNER_TEMP
1 parent 8e2a79e commit bb2608a

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,16 @@ jobs:
5050
with:
5151
version: ${{matrix.emacs_version}}
5252

53-
- name: Install Bash 5.0
54-
run: |
55-
wget -O $GITHUB_WORKSPACE/bash-5.0 --quiet https://github.com/robxu9/bash-static/releases/download/5.0/bash-linux
56-
chmod +x $GITHUB_WORKSPACE/bash-5.0
57-
5853
- name: Install Eldev
5954
uses: emacs-eldev/setup-eldev@v1
6055

6156
- name: Check out the source code
6257
uses: actions/checkout@v4
6358

64-
- name: Test the project
59+
- name: Install bash 5.0 and test the project
6560
run: |
66-
$GITHUB_WORKSPACE/bash-5.0 --version && eldev -p -dtT test --bash=$GITHUB_WORKSPACE/bash-5.0
61+
wget -O $RUNNER_TEMP/bash-5.0 --quiet https://github.com/robxu9/bash-static/releases/download/5.0/bash-linux
62+
chmod +x $RUNNER_TEMP/bash-5.0
63+
$RUNNER_TEMP/bash-5.0 --version
64+
eldev -p -dtT test --bash=$RUNNER_TEMP/bash-5.0
6765

0 commit comments

Comments
 (0)