Skip to content

Commit 258e25c

Browse files
committed
CI: Fix continue-on-error
If a test fails, `continue-on-error` will not be evaluated, if it's not set. https://github.com/eksperimental-forks/elixir/actions/runs/19824449905/job/56794214695#step:9:46 2196 doctests, 4913 tests, 1 failure (18 excluded) make: *** [Makefile:289: test_stdlib] Error 2 Error: Process completed with exit code 2. Error: The step failed and an error occurred when attempting to determine whether to continue on error. Error: The template is not valid. .github/workflows/ci.yml (Line: 78, Col: 28): Unexpected value ''
1 parent e278bc2 commit 258e25c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ jobs:
103103
- name: Erlang test suite
104104
if: ${{ !matrix.skip_tests }}
105105
run: make test_erlang
106-
continue-on-error: ${{ matrix.development }}
106+
continue-on-error: ${{ matrix.development == true }}
107107

108108
- name: Elixir test suite
109109
if: ${{ matrix.coverage || !matrix.skip_tests }}
110110
run: make test_elixir
111-
continue-on-error: ${{ matrix.development }}
111+
continue-on-error: ${{ matrix.development == true }}
112112
env:
113113
COVER: ${{ matrix.coverage }}
114114

0 commit comments

Comments
 (0)