From 89779b183405ff17a0a6dea671784c49f30511de Mon Sep 17 00:00:00 2001 From: Eksperimental Date: Mon, 1 Dec 2025 21:23:10 -0500 Subject: [PATCH] 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 '' --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed414da2330..b99d2ee667c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,11 +75,11 @@ jobs: - name: Erlang test suite run: make test_erlang - continue-on-error: ${{ matrix.development }} + continue-on-error: ${{ matrix.development == true }} - name: Elixir test suite run: make test_elixir - continue-on-error: ${{ matrix.development }} + continue-on-error: ${{ matrix.development == true }} env: COVER: "${{ matrix.coverage }}"