continue-on-error for doctest on GHC 9
This commit is contained in:
parent
2eba8866b7
commit
f527f09ac3
1 changed files with 3 additions and 0 deletions
3
.github/workflows/master.yml
vendored
3
.github/workflows/master.yml
vendored
|
@ -64,6 +64,9 @@ jobs:
|
|||
cabal test all
|
||||
|
||||
- name: Run doctests
|
||||
# doctests are broken on GHC 9 due to compiler bug:
|
||||
# https://gitlab.haskell.org/ghc/ghc/-/issues/19460
|
||||
continue-on-error: ${{ matrix.ghc == '9.0.1' }}
|
||||
run: |
|
||||
# Necessary for doctest to be found in $PATH
|
||||
export PATH="$HOME/.cabal/bin:$PATH"
|
||||
|
|
Loading…
Reference in a new issue