Skip to content

Commit

Permalink
fix: update make commands in test workflow
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
horta committed Nov 7, 2024
1 parent b478268 commit 92858bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 92858bf

Please sign in to comment.