File tree 1 file changed +11
-9
lines changed 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,15 @@ on: [push]
2
2
name : CI
3
3
jobs :
4
4
cabal :
5
- name : Cabal / GHC ${{ matrix.ghc }}
5
+ name : Cabal / Kubernetes ${{ matrix.k8s_release }} / GHC ${{ matrix.ghc }}
6
6
runs-on : ubuntu-latest
7
7
strategy :
8
8
fail-fast : false
9
+ # This full matrix at time of writing is 11 K8S versions * 6 compiler versions = 66,
10
+ # which is a little big for CI.
11
+ # Commented some older versions of each to make it manageable.
9
12
matrix :
10
- ghc :
11
- # - "8.10.7"
12
- # - "9.0.2"
13
- # - "9.2.8"
14
- - " 9.4.8"
15
- - " 9.6.5"
16
- - " 9.8.2"
17
13
k8s_release :
18
- # Choose a subset of these to ease the load on CI
19
14
# - "1.20"
20
15
# - "1.21"
21
16
# - "1.22"
27
22
- " 1.28"
28
23
- " 1.29"
29
24
- " 1.30"
25
+ ghc :
26
+ # - "8.10.7"
27
+ # - "9.0.2"
28
+ # - "9.2.8"
29
+ - " 9.4.8"
30
+ - " 9.6.5"
31
+ - " 9.8.2"
30
32
steps :
31
33
- uses : actions/checkout@v4
32
34
You can’t perform that action at this time.
0 commit comments