We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c699ae commit aeb10b0Copy full SHA for aeb10b0
.github/workflows/test.yml
@@ -30,6 +30,8 @@ jobs:
30
test:
31
needs: pre_job
32
runs-on: ${{ matrix.os }}
33
+ env:
34
+ XDG_CACHE_HOME: /tmp/ghcide
35
strategy:
36
fail-fast: true
37
matrix:
@@ -140,7 +142,9 @@ jobs:
140
142
141
143
# this is only safe if the test environment is isolated
144
- name: clean ide cache
- run: rm -rf ~/.cache/ghcide
145
+ run: |
146
+ rm -rf ~/.cache/ghcide
147
+ rm -rf $XDG_CACHE_HOME/ghcide
148
149
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
150
name: Build
0 commit comments