Skip to content

Commit

Permalink
* .github/workflows/build.yml: Add for GitHub Actions CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcms committed Apr 5, 2024
1 parent 764aea5 commit 1195901
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
pull_request:
schedule:
- cron: '0 */12 * * *'

jobs:
build:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
emacs_version:
- '24.3'
- '25.3'
- '26.3'
- '27.1'
- '28.2'
- '29.3'
- 'snapshot'

steps:
- uses: actions/checkout@v4

- name: Set up Emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}

- name: Compile
run: make compile

0 comments on commit 1195901

Please sign in to comment.