File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments