From d4ccd4e2bb72d2727837736f9202187f9442c003 Mon Sep 17 00:00:00 2001 From: Badlop Date: Wed, 6 Nov 2024 16:11:10 +0100 Subject: [PATCH] CI: Test EUnit only with Erlang 26 or higher Three tests fail with older Erlang versions: fxml_test: splitted_stream_test...*failed* fxml_test: streaming_mismatched_tags_error_test...*failed* fxml_test: streaming_invalid_attribute_error_test...*failed* --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb61b06..3ea3e9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - run: rebar3 xref - run: rebar3 dialyzer - run: rebar3 eunit -v - if: matrix.otp >= 24 + if: matrix.otp >= 26 cover: name: Cover