From 5099fb37a0ec37f98583d7ad72309a89bb52f25a Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Tue, 19 Nov 2019 00:50:38 +0900 Subject: [PATCH] GitHub Actions: allow_failure --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 15860af9..bd240b6b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,8 +21,9 @@ jobs: - "26.2" - "26.3" - snapshot - env: - EMACS_LINT_IGNORE: ${{ matrix.lint_ignore }} + include: + - emacs_version: snapshot + allow_failure: true steps: - uses: purcell/setup-emacs@master with: @@ -30,4 +31,8 @@ jobs: - uses: actions/checkout@v1 - name: Run tests + if: matrix.allow_failure != true run: 'make test' + - name: Run tests (allow failure) + if: matrix.allow_failure == true + run: 'make test || true'