continue-on-error for doctest on GHC 9

This commit is contained in:
Maxim Koltsov 2021-06-22 15:41:13 +02:00
parent 2eba8866b7
commit f527f09ac3
No known key found for this signature in database
GPG Key ID: 52B5EDB68BF54442

View File

@ -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"