Disables cache for MacOS CI

The MacOS CI seems to only be green when the cache is missed
so it seems there is something bad left in there between run.

Disabling for now until we figure out what that is.
This commit is contained in:
Tim Dévé 2020-11-07 20:22:49 +00:00
parent 10cfe4e9f1
commit 56499c652e

View File

@ -14,12 +14,12 @@ jobs:
- name: Check out
uses: actions/checkout@v2
- uses: actions/cache@v1
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-stack-${{ github.sha }}
restore-keys: ${{ runner.os }}-stack-
# - uses: actions/cache@v1
# name: Cache ~/.stack
# with:
# path: ~/.stack
# key: ${{ runner.os }}-stack-${{ github.sha }}
# restore-keys: ${{ runner.os }}-stack-
- uses: actions/setup-haskell@v1.1
with: