summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorbrotzeit <brotzeitmacher@gmail.com>2022-04-28 12:04:48 +0200
committerGitHub <noreply@github.com>2022-04-28 12:04:48 +0200
commitd17be3051b22a06d7742178cd1367aed61807a66 (patch)
tree44c9608eb880990e74c7a4864a98c2a15b0ba573 /.github/workflows
parent26ecc903c50b2ffd289bbe981f9ad03626fc0057 (diff)
parent46325b435037b5dd96a724fed83e940a7015a848 (diff)
downloadrust-mode-d17be3051b22a06d7742178cd1367aed61807a66.tar.gz
Merge pull request #444 from jcs-PR/ci-eask
Use Eask for CI
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml20
1 files changed, 13 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6b016cf..a970eda 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -3,28 +3,34 @@ name: CI
on: [push, pull_request]
jobs:
- unix-test:
- runs-on: ubuntu-latest
+ test:
+ runs-on: ${{ matrix.os }}
strategy:
- max-parallel: 6
+ fail-fast: false
matrix:
+ os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 26.3
- 27.2
+ - 28.1
# - snapshot
steps:
- uses: actions/checkout@v2
- - uses: purcell/setup-emacs@master
+ - uses: jcs090218/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- - uses: conao3/setup-cask@master
+ - uses: actions/setup-node@v2
with:
- version: 0.8.4
+ node-version: '16'
+
+ - uses: emacs-eask/setup-eask@master
+ with:
+ version: 'snapshot'
- name: Run tests
run: |
- make test
+ make ci