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 00add61 commit b166f18Copy full SHA for b166f18
.github/workflows/test.yml
@@ -138,6 +138,13 @@ jobs:
138
sed -i.bak -e 's/Paths_haskell_language_server/Paths_hls/g' \
139
src/**/*.hs exe/*.hs
140
141
+ # this is only safe if the test environment is isolated
142
+ - name: clean ide cache
143
+ run: |
144
+ pgrep -af ghcide; true
145
+ pgrep -af hls; true
146
+ rm -rf ~/.cache/ghcide
147
+
148
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
149
name: Build
150
# Retry it three times to workaround compiler segfaults in windows
0 commit comments