File tree 3 files changed +5
-7
lines changed 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 5
5
strategy :
6
6
matrix :
7
7
include :
8
- - { ghc: 9.0.2, hls: 1.7.0.0 }
9
- - { ghc: 9.2.4, hls: '' }
10
- - { ghc: 9.4.2, hls: '' }
8
+ - { ghc: 9.0.2 }
9
+ - { ghc: 9.2.4 }
10
+ - { ghc: 9.4.2 }
11
11
name : Docker with GHC ${{ matrix.ghc }}
12
12
runs-on : ubuntu-latest
13
13
steps :
31
31
with :
32
32
build-args : |
33
33
GHC_VERSION=${{ matrix.ghc }}
34
- HLS_VERSION=${{ matrix.hls }}
35
34
cache-from : type=gha
36
35
cache-to : type=gha,mode=max
37
36
labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 54
54
55
55
# Install GHC.
56
56
57
- ARG GHC_VERSION=9.0 .2
57
+ ARG GHC_VERSION=9.4 .2
58
58
RUN \
59
59
set -o errexit -o xtrace; \
60
60
if test -n "$GHC_VERSION" ; then \
85
85
86
86
# Install HLS.
87
87
88
- ARG HLS_VERSION=1.7 .0.0
88
+ ARG HLS_VERSION=1.8 .0.0
89
89
RUN \
90
90
set -o errexit -o xtrace; \
91
91
if test -n "$HLS_VERSION" ; then \
Original file line number Diff line number Diff line change @@ -7,4 +7,3 @@ This Docker image provides a Haskell development environment with the following
7
7
- [ Cabal] ( https://www.haskell.org/cabal/ )
8
8
- [ Stack] ( https://docs.haskellstack.org/en/stable/README/ )
9
9
- [ HLS] ( https://haskell-language-server.readthedocs.io/en/latest/ )
10
- - Note that HLS is not available for all versions of GHC.
You can’t perform that action at this time.
0 commit comments