From b60096a3287f48959d51986a99e58b670328cfe9 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sun, 12 Feb 2023 09:20:18 +0100 Subject: [PATCH] CI: add MSYS2 to PATH to make bash available during testing --- .github/workflows/binaries.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index ba2a2cf..2b17cbe 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -31,6 +31,10 @@ jobs: - uses: actions/checkout@v3 + - name: Setup MSYS2 (Windows) + if: ${{ runner.os == 'Linux' }} + run: echo "C:\msys64\mingw64\bin;C:\msys64\usr\bin" >> "${GITHUB_PATH}" + - name: Setup Haskell Stack uses: haskell/actions/setup@v2 id: setup