From 850c052c36e62e650d0da0a3857d495eabbe4e40 Mon Sep 17 00:00:00 2001 From: AdrienWehrle Date: Wed, 11 Sep 2024 22:49:32 +0200 Subject: [PATCH] as least trying to fix it --- .github/workflows/main.yml | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6207bba..75a851b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }}