Skip to content

Commit 21212f2

Browse files
committed
CI: switch matrix to ubuntu-22.04 and install 8.2 prereqs
1 parent adaa112 commit 21212f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-20.04, macOS-latest]
18+
os: [ubuntu-22.04, macOS-latest]
1919
ghc: ['9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4', '8.2']
2020
steps:
2121
- uses: actions/checkout@v3
22+
- name: Install prerequisites for GHC 8.2 on ubuntu-22.04
23+
if: runner.os == 'Linux' && matrix.ghc == '8.2'
24+
run: |
25+
sudo apt-get install libncurses5 libtinfo5
2226
- uses: haskell/actions/setup@v2
2327
id: setup-haskell-cabal
2428
with:

0 commit comments

Comments
 (0)