initial commit
Some checks failed
CI / test (snapshot, ubuntu-latest) (push) Failing after 1s
CI / test (26.3, macos-latest) (push) Has been cancelled
CI / test (26.3, windows-latest) (push) Has been cancelled
CI / test (27.2, macos-latest) (push) Has been cancelled
CI / test (27.2, windows-latest) (push) Has been cancelled
CI / test (28.1, macos-latest) (push) Has been cancelled
CI / test (28.1, ubuntu-latest) (push) Has started running
CI / test (28.1, windows-latest) (push) Has been cancelled
CI / test (snapshot, macos-latest) (push) Has been cancelled
CI / test (snapshot, windows-latest) (push) Has been cancelled
CI / test (26.3, ubuntu-latest) (push) Has been cancelled
CI / test (27.2, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2025-11-19 11:46:15 +01:00
commit e9680c4116
7 changed files with 401 additions and 0 deletions

40
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,40 @@
name: CI
on:
push:
branches:
- master
- main
pull_request:
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.1
- snapshot
steps:
- uses: actions/checkout@v2
- uses: jcs090218/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- uses: actions/setup-node@v2
with:
node-version: '16'
- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'
- name: Run tests
run:
make ci