Skip to content

Commit 5178ed2

Browse files
committed
Test ghc deprecated version
1 parent 9c5b6e6 commit 5178ed2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [macos-11, ubuntu-latest, windows-latest]
14+
ghc: [9.0.1]
15+
include:
16+
# To test a ghc version deprecated in newer hls versions
17+
- os: ubuntu-latest
18+
ghc: 8.10.5
1419
runs-on: ${{ matrix.os }}
1520
steps:
1621
- name: Checkout
@@ -22,7 +27,7 @@ jobs:
2227
- name: Ensure there is a supported ghc versions
2328
uses: haskell/actions/setup@v1
2429
with:
25-
ghc-version: 9.0.1
30+
ghc-version: ${{ matrix.ghc }}
2631
- run: npm ci
2732
- run: npm run webpack
2833
- run: xvfb-run -s '-screen 0 640x480x16' -a npm test

0 commit comments

Comments
 (0)