From b39f74cb8ad0f3e26e4cc9e7d708db5cfe1dabe8 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Mon, 23 Jun 2025 10:58:14 -0700 Subject: [PATCH] Add more versions to CI --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f705a8e..6e16a3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,14 @@ name: CI -on: [push, pull_request] +on: + push: + branches: [main] + pull_request: {} jobs: ci: runs-on: ubuntu-latest strategy: matrix: - emacs_version: [26, 27, "master"] + emacs_version: [26, 27, 28, 29, 30] steps: - name: Checkout uses: actions/checkout@v2