Skip to content

Commit 403d920

Browse files
authored
Fix CI on Ubuntu 22.04 (#563)
1 parent d4933c6 commit 403d920

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
ghc: 'latest'
2424
steps:
2525
- uses: actions/checkout@v2
26+
- name: Install libncurses5 and libtinfo
27+
if: runner.os == 'Linux' && matrix.ghc <= '8.2'
28+
run: |
29+
sudo apt-get install libncurses5 libtinfo5
2630
- uses: haskell/actions/setup@v1
2731
id: setup-haskell-cabal
2832
with:

0 commit comments

Comments
 (0)