We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b75a810 + 5099fb3 commit 127b1f0Copy full SHA for 127b1f0
.github/workflows/test.yml
@@ -21,13 +21,18 @@ jobs:
21
- "26.2"
22
- "26.3"
23
- snapshot
24
- env:
25
- EMACS_LINT_IGNORE: ${{ matrix.lint_ignore }}
+ include:
+ - emacs_version: snapshot
26
+ allow_failure: true
27
steps:
28
- uses: purcell/setup-emacs@master
29
with:
30
version: ${{ matrix.emacs_version }}
31
32
- uses: actions/checkout@v1
33
- name: Run tests
34
+ if: matrix.allow_failure != true
35
run: 'make test'
36
+ - name: Run tests (allow failure)
37
+ if: matrix.allow_failure == true
38
+ run: 'make test || true'
0 commit comments