Skip to content

Commit cad69f7

Browse files
CI: Fix continue-on-error (#14991)
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 1aa188f commit cad69f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ jobs:
7575

7676
- name: Erlang test suite
7777
run: make test_erlang
78-
continue-on-error: ${{ matrix.development }}
78+
continue-on-error: ${{ matrix.development == true }}
7979

8080
- name: Elixir test suite
8181
run: make test_elixir
82-
continue-on-error: ${{ matrix.development }}
82+
continue-on-error: ${{ matrix.development == true }}
8383
env:
8484
COVER: "${{ matrix.coverage }}"
8585

0 commit comments

Comments
 (0)