diff options
Diffstat (limited to 'site-lisp/bind-key-2.4.1/.github/workflows')
| -rw-r--r-- | site-lisp/bind-key-2.4.1/.github/workflows/test.yml | 34 |
1 files changed, 34 insertions, 0 deletions
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' |
