We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d89c7a9 commit 22bec11Copy full SHA for 22bec11
.github/workflows/build.yml
@@ -123,7 +123,7 @@ jobs:
123
- name: List exact cabal deps
124
run: |
125
devbox run -- cabal freeze --only-dependencies
126
- sed -i '$ d' cabal.project.freeze
+ sed -i '' -e '$ d' cabal.project.freeze
127
128
- name: Cache cabal store
129
uses: actions/cache@v4
@@ -176,6 +176,14 @@ jobs:
176
steps:
177
- uses: actions/checkout@v4
178
179
+ - name: Configure choco cache
180
+ run: choco config set cacheLocation ./.choco-cache
181
+
182
+ - uses: actions/cache@v4
183
+ with:
184
+ path: ./.choco-cache
185
+ key: choco-cache-${{ env.ghc }}-${{ env.cabal }}
186
187
- id: setup-haskell
188
uses: haskell-actions/setup@v2
189
with:
0 commit comments