diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 12:03:05 -0600 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 12:03:24 -0600 |
commit | f3fb461f1e89ad351bf8d28eb16ff7f98fc23895 (patch) | |
tree | c538ec30fbb0b6074cb136889d6dbb5ecefd3635 /.github | |
parent | 3f9dcf1b12b4221392e2a212e3220340ca15e6ae (diff) | |
download | fpm-f3fb461f1e89ad351bf8d28eb16ff7f98fc23895.tar.gz fpm-f3fb461f1e89ad351bf8d28eb16ff7f98fc23895.zip |
CI: put fpm to $PATH on macOS
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 32ead94..ec1afda 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -67,6 +67,11 @@ jobs: stack build stack install + - name: macOS: put fpm to PATH + if: contains(matrix.os, 'macos') + run: | + cp /Users/runner/.local/bin/fpm /usr/local/bin + - name: Run tests on Haskell fpm run: | cd bootstrap |