Skip to content

Commit

Permalink
Update test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbarclay committed Mar 18, 2024
1 parent 933dbf9 commit c7aae6e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Build and Test"
on:
push:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
emacs_version: [25.3, 26.1, 26.2, 26.3, 27.1, 27.2, 28.1, 28.2, 29.1, 29.2, release-snapshot, snapshot]

steps:
- uses: actions/checkout@v4
- name: Setup Emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Check emacs version
run: emacs --version
- name: Check
run: nix develop -c make test

0 comments on commit c7aae6e

Please sign in to comment.