We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b20ccc5 + 708fa43 commit bc7ff52Copy full SHA for bc7ff52
1 file changed
.github/workflows/build.yml
@@ -35,7 +35,15 @@ jobs:
35
- name: Checkout
36
uses: actions/checkout@v3
37
38
- - name: Environment
+ - name: Environment (Purge)
39
+ # The version of `ghc` that comes pre-installed on runner images does
40
+ # not have documentation for core libraries. This makes it impossible
41
+ # to build documentation with working hyperlinks to those libraries. To
42
+ # solve this problem, we purge the existing installation, which enables
43
+ # the next build step to install ghc from scratch, with documentation.
44
+ run: ghcup nuke || true
45
+
46
+ - name: Environment (Installation)
47
uses: haskell/actions/setup@v2
48
id: setup-haskell-cabal
49
with:
0 commit comments