diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ec1afda..f4e2878 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -67,11 +67,16 @@ jobs: stack build stack install - - name: macOS: put fpm to PATH + - name: put fpm to PATH (macOS) if: contains(matrix.os, 'macos') run: | cp /Users/runner/.local/bin/fpm /usr/local/bin + - name: put fpm to PATH (Windows) + if: contains(matrix.os, 'windows') + run: | + copy "C:\Users\runneradmin\AppData\Roaming\local\bin\fpm.exe" "C:\Program Files\Git\usr\bin" + - name: Run tests on Haskell fpm run: | cd bootstrap |