From 715b5b64c615e1f3edaa7069a3c0ca2aef2efe02 Mon Sep 17 00:00:00 2001 From: Badlop Date: Wed, 13 Nov 2024 19:37:12 +0100 Subject: [PATCH] Runtime: Test Dialyzer in Rebars jobs (#4281) The CI workflow uses ubuntu-24.04 and setup-beam action, so it can test only Erlang/OTP 24 and higher. To ensure Dialyzer is also ran with older Erlang versions, let's add Dialyzer testing to the Runtime workflow, which uses the erlang container, and that allows to run Erlang/OTP 20 in ubuntu-24.04. --- .github/workflows/runtime.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index 1231c6acd..5b8d111ec 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -81,6 +81,8 @@ jobs: - run: make xref + - run: make dialyzer + - name: Prepare rel (rebar2) if: matrix.rebar == 'rebar' run: |