We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c5b6e6 commit 5178ed2Copy full SHA for 5178ed2
.github/workflows/test.yml
@@ -11,6 +11,11 @@ jobs:
11
strategy:
12
matrix:
13
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
19
runs-on: ${{ matrix.os }}
20
steps:
21
- name: Checkout
@@ -22,7 +27,7 @@ jobs:
22
27
- name: Ensure there is a supported ghc versions
23
28
uses: haskell/actions/setup@v1
24
29
with:
25
- ghc-version: 9.0.1
30
+ ghc-version: ${{ matrix.ghc }}
26
31
- run: npm ci
32
- run: npm run webpack
33
- run: xvfb-run -s '-screen 0 640x480x16' -a npm test
0 commit comments