From 316e2a1de9fecd70567b561cae614272f802de0d Mon Sep 17 00:00:00 2001 From: Waleed Judah Date: Sat, 7 Jun 2025 04:08:06 -0400 Subject: [PATCH] ci: install mingw on windows --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed911c3..debd966 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,9 @@ jobs: elif [[ "$RUNNER_OS" == "macOS" ]]; then brew install shellcheck elif [[ "$RUNNER_OS" == "Windows" ]]; then - choco install -y shellcheck + choco install -y shellcheck make mingw + echo "C:\\tools\\mingw64\\bin" >> "$GITHUB_PATH" + echo "C:\\ProgramData\\chocolatey\\lib\\make\\tools\\GnuWin32\\bin" >> "$GITHUB_PATH" fi - name: Lint Shell Scripts run: shellcheck tests/*.sh