Skip to content

Commit

Permalink
Merge pull request #501 from jcs-PR/test/29
Browse files Browse the repository at this point in the history
test: Emacs 29.1
  • Loading branch information
psibi committed Aug 6, 2023
2 parents fac7d28 + 16805b5 commit 9c26dc1
Showing 1 changed file with 44 additions and 24 deletions.
68 changes: 44 additions & 24 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,52 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 26.3
- 27.2
- 28.2
# - snapshot
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

steps:
- uses: actions/checkout@v3
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]
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

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

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

- name: Run tests
run: |
make ci
- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'

- name: Run tests
run:
make ci

0 comments on commit 9c26dc1

Please sign in to comment.