[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/async 2ed4750dd6 3/3: Merge pull request #191 from purc
From: |
ELPA Syncer |
Subject: |
[elpa] externals/async 2ed4750dd6 3/3: Merge pull request #191 from purcell/patch-1 |
Date: |
Fri, 5 Jul 2024 15:57:29 -0400 (EDT) |
branch: externals/async
commit 2ed4750dd6fb17ea2c08d9933afbdfd630966f8e
Merge: 39fcd93d05 a099dbd3e9
Author: John Wiegley <johnw@newartisans.com>
Commit: GitHub <noreply@github.com>
Merge pull request #191 from purcell/patch-1
Re-enable CI, add Emacs 29, and skip old Emacsen on ARM MacOS
---
.github/workflows/test.yml | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6817428c0b..cfda7ceb18 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,7 +13,6 @@ concurrency:
jobs:
test:
- if: false
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
@@ -27,7 +26,22 @@ jobs:
- '27.2'
- '28.1'
- '28.2'
+ - '29.3'
- snapshot
+ # Skip older emacs versions that are not available on ARM MacOS
+ exclude:
+ - os: macos-latest
+ emacs-version: '26.1'
+ - os: macos-latest
+ emacs-version: '26.2'
+ - os: macos-latest
+ emacs-version: '26.3'
+ - os: macos-latest
+ emacs-version: '27.1'
+ - os: macos-latest
+ emacs-version: '27.2'
+ - os: macos-latest
+ emacs-version: '28.1'
steps:
- uses: actions/checkout@v3