Skip to content

Commit

Permalink
Fix CI: don't fail fast, and really allow failure on emacs-snapshot (#…
Browse files Browse the repository at this point in the history
…183)

* CI: don't fail fast, and really allow failure on emacs-snapshot

Sometimes we need to compare between Emacs versions. With fail-fast set to
true (the default), failure in one Emacs version cancels the remaining jobs for
other Emacs versions.

allow_failures -> continue-on-error: Missed necessary change when moving
from Travis CI to Github Actions.
  • Loading branch information
bmag authored Mar 27, 2021
1 parent 0b9d710 commit 1e66b36
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ on:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
emacs_version:
- '25.3'
- '26.3'
- '27.1'
experimental: [false]
include:
- emacs_version: snapshot
allow_failures: true
experimental: true
cask_version:
- 'snapshot'
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down

0 comments on commit 1e66b36

Please sign in to comment.