Skip to content

Commit 9b64ce2

Browse files
fix for haskell.yml workflow
1 parent 2c3a53f commit 9b64ce2

File tree

1 file changed

+12
-19
lines changed

1 file changed

+12
-19
lines changed

.github/workflows/haskell.yml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -52,26 +52,19 @@ jobs:
5252
brew: ${{ matrix.brew }}
5353
- uses: actions/checkout@v2
5454

55-
- name: Cache Local
56-
id: cache-local
57-
uses: actions/cache@v1
58-
with:
59-
path: ~/.local/
60-
key: ${{ runner.os }}-local-v1
61-
62-
- name: Cache Stack
63-
id: cache-stack
64-
uses: actions/cache@v1
65-
with:
66-
path: ~/.stack
67-
key: ${{ runner.os }}-stack-v1
55+
- name: Cache Stack
56+
id: cache-stack
57+
uses: actions/cache@v1
58+
with:
59+
path: ~/.stack
60+
key: ${{ runner.os }}-stack-v1
6861

69-
- name: Cache Cabal
70-
id: cache-cabal
71-
uses: actions/cache@v1
72-
with:
73-
path: ~/.cabal
74-
key: ${{ runner.os }}-cabal-v1
62+
- name: Cache Cabal
63+
id: cache-cabal
64+
uses: actions/cache@v1
65+
with:
66+
path: ~/.cabal
67+
key: ${{ runner.os }}-cabal-v1
7568

7669
- name: Build
7770
run: |

0 commit comments

Comments
 (0)