Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
beacoder authored Apr 30, 2024
1 parent f919fd1 commit 3f52bfe
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,43 @@
name: CI

on:
pull_request:
push:
paths-ignore:
- '**.md'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: purcell/setup-emacs@master
with:
version: 29.3
- uses: actions/checkout@v2
- name: Run tests
run: make package-lint

build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
emacs_version:
- 24.4
- 24.5
- 25.1
- 25.3
- 26.1
- 26.3
- 27.1
- 27.2
- 28.1
- 28.2
- 29.1
- 29.3
experimental: [false]
include:
- emacs_version: snapshot
experimental: true
- snapshot
steps:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}

- uses: actions/checkout@v4
- name: Check startup
run: ./test-startup.sh
- uses: actions/checkout@v2
- name: Run tests
run: make compile

0 comments on commit 3f52bfe

Please sign in to comment.