Skip to content

Commit 7395550

Browse files
authored
Add Github Actions as a CI runner for macOS (clojure-emacs#3117)
Co-authored-by: ikappaki <[email protected]>
1 parent 81592f9 commit 7395550

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

Diff for: .github/workflows/test.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{matrix.os}}
8+
9+
strategy:
10+
matrix:
11+
os: [macos-latest]
12+
emacs_version: ['26.3', '27.2']
13+
14+
steps:
15+
- name: Set up Emacs
16+
uses: purcell/setup-emacs@master
17+
with:
18+
version: ${{matrix.emacs_version}}
19+
20+
- name: Install Eldev
21+
run: curl -fsSL https://raw.githubusercontent.com/doublep/eldev/0.10.3/webinstall/github-eldev | sh
22+
23+
- name: Check out the source code
24+
uses: actions/checkout@v2
25+
26+
- name: Test the project
27+
run: |
28+
eldev -p -dtT test

0 commit comments

Comments
 (0)