Skip to content

Commit 127b1f0

Browse files
authored
Merge pull request #589 from emacs-php/fix/github-actions-suppress-error-on-snapshot
Ignore error on snapshot for GitHub actions CI
2 parents b75a810 + 5099fb3 commit 127b1f0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Diff for: .github/workflows/test.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,18 @@ jobs:
2121
- "26.2"
2222
- "26.3"
2323
- snapshot
24-
env:
25-
EMACS_LINT_IGNORE: ${{ matrix.lint_ignore }}
24+
include:
25+
- emacs_version: snapshot
26+
allow_failure: true
2627
steps:
2728
- uses: purcell/setup-emacs@master
2829
with:
2930
version: ${{ matrix.emacs_version }}
3031

3132
- uses: actions/checkout@v1
3233
- name: Run tests
34+
if: matrix.allow_failure != true
3335
run: 'make test'
36+
- name: Run tests (allow failure)
37+
if: matrix.allow_failure == true
38+
run: 'make test || true'

0 commit comments

Comments
 (0)