Skip to content

Commit

Permalink
Merge pull request #523 from rust-lang/ci-29
Browse files Browse the repository at this point in the history
CI: Update to test with last 3 emacs version
  • Loading branch information
psibi committed Feb 28, 2024
2 parents a8f9469 + ae0b7f5 commit 8b1ef9f
Showing 1 changed file with 10 additions and 20 deletions.
30 changes: 10 additions & 20 deletions .github/workflows/test.yml
Expand Up @@ -14,39 +14,29 @@ concurrency:
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 26.3
- 27.2
- 28.2
- 29.1
experimental: [false]
- 29.2
include:
- os: ubuntu-latest
emacs-version: snapshot
experimental: true
- os: macos-latest
emacs-version: snapshot
experimental: true
- os: windows-latest
emacs-version: snapshot
experimental: true

steps:
- uses: actions/checkout@v3

- uses: jcs090218/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}

- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'

- name: Run tests
run:
make ci
- uses: actions/checkout@v4
- uses: jcs090218/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- uses: emacs-eask/setup-eask@master
with:
version: "snapshot"
- name: Run tests
run: make ci

0 comments on commit 8b1ef9f

Please sign in to comment.