chore: Add test for Emacs 30.1 #133
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- '25.3' | |
- '26.3' | |
- '27.1' | |
- '27.2' | |
- '28.1' | |
- '28.2' | |
- '29.1' | |
- '30.1' | |
steps: | |
- name: Install Nix and set up Emacs | |
uses: jcs090218/setup-emacs@master | |
with: | |
version: ${{matrix.emacs_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' | |
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 Eldev | |
uses: emacs-eldev/setup-eldev@v1 | |
- name: Check out the source code | |
uses: actions/checkout@v4 | |
- name: Install bash 5.0 and test the project | |
run: | | |
wget -O $RUNNER_TEMP/bash-5.0 --quiet https://github.com/robxu9/bash-static/releases/download/5.0/bash-linux | |
chmod +x $RUNNER_TEMP/bash-5.0 | |
$RUNNER_TEMP/bash-5.0 --version | |
eldev -p -dtT test --bash=$RUNNER_TEMP/bash-5.0 | |