Skip to content

Commit

Permalink
as least trying to fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienWehrle committed Sep 11, 2024
1 parent 7198a8c commit 850c052
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
name: CD
name: check

on: [push]

jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
emacs_version:
- 26.3
- 27.2
- 28.1
- snapshot
ignore_warnings:
- true
include:
- emacs_version: snapshot
ignore_warnings: false
steps:
- uses: leotaku/elisp-check@master
with:
check: load-file
file: init.el
- uses: actions/checkout@v2
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- uses: leotaku/elisp-check@master
with:
file: init.el
ignore_warnings: ${{ matrix.ignore_warnings }}

0 comments on commit 850c052

Please sign in to comment.