From 2060192607fa4c40e1b6c0107b08f2ab65977bda Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 30 Mar 2025 22:00:44 +0200 Subject: [PATCH] GH Actions: test against libxml 2.14 Libxml 2.14 has been released a few days ago. Considering the issues we've previously seen with different libxml versions, let's have at least one build which runs against libxml 2.14. Ref: https://gitlab.gnome.org/GNOME/libxml2/-/blob/2.14/NEWS --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06364de3ef..f4526c0854 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -86,9 +86,12 @@ jobs: - php: '8.0' os: 'ubuntu-latest' libxml_minor: '2.11' - - php: '8.3' + - php: '8.2' os: 'ubuntu-latest' libxml_minor: '2.13' + - php: '8.3' + os: 'ubuntu-latest' + libxml_minor: '2.14' # Extra builds running only the unit tests with different PHP ini settings. - php: '5.5'