From 90987194cba1fd6c80f32d882f7c288f2a6978cf Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 11 Mar 2025 09:45:55 +0100 Subject: [PATCH] .github/workflows/build.yml: run unit tests on Windows The unit tests currently fail on Windows. That needs to be fixed, but good to know that there are problems currently. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dcf5acea4..2d9793f4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -320,3 +320,6 @@ jobs: - name: Build run: meson compile -C "${{github.workspace}}/build" --verbose + + - name: Unit Tests + run: meson test -C "${{github.workspace}}/build" --print-errorlogs