From 92858bfc355df00fc1d251864cad26027b39045e Mon Sep 17 00:00:00 2001 From: Danilo Horta Date: Thu, 7 Nov 2024 17:06:04 +0000 Subject: [PATCH] fix: update make commands in test workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated `make` to `mingw32-make` in `.github/workflows/test.yml` - Updated `make check` to `mingw32-make check` in `.github/workflows/test.yml` 💻 Migrate to using MinGW make for Windows compatibility in the CI workflow. Adjusting the toolchain to ensure consistent builds across all environments. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 276329d..c9ed1ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v4 - name: make - run: make + run: mingw32-make - name: make check - run: make check + run: mingw32-make check