From c7aae6e35c1333c0be44f1e769a1fcd85ba0e005 Mon Sep 17 00:00:00 2001 From: Justin Barclay Date: Sun, 17 Mar 2024 17:44:13 -0700 Subject: [PATCH] Update test setup --- .github/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..8b2d051 --- /dev/null +++ b/.github/workflows/test.yml @@ -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