From 79e04842d239770fbe86bcfa60c693480a6b60cc Mon Sep 17 00:00:00 2001 From: Astounds Date: Fri, 7 Aug 2026 16:18:49 -0500 Subject: test --- .../bind-key-2.4.1/.github/workflows/test.yml | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 site-lisp/bind-key-2.4.1/.github/workflows/test.yml (limited to 'site-lisp/bind-key-2.4.1/.github/workflows') diff --git a/site-lisp/bind-key-2.4.1/.github/workflows/test.yml b/site-lisp/bind-key-2.4.1/.github/workflows/test.yml new file mode 100644 index 0000000..51fc206 --- /dev/null +++ b/site-lisp/bind-key-2.4.1/.github/workflows/test.yml @@ -0,0 +1,34 @@ +## test.yml + +name: Main workflow +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + emacs_version: + - '26.1' + - '26.2' + - '26.3' + - '27.1' + - '27.2' + - '28.1' + - 'snapshot' + include: + - emacs_version: 'snapshot' + allow_failure: true + steps: + - uses: actions/checkout@v2 + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs_version }} + + - name: Run tests + if: matrix.allow_failure != true + run: 'make && make test' + + - name: Run tests (allow failure) + if: matrix.allow_failure == true + run: 'make && make test || true' -- cgit v1.2.3