Skip to content

Commit 6ad7f3e

Browse files
committed
CI: Cabal-Linux: {relude,hashing,ghc-bignum} => allow 8.8 to continue
1 parent 343dc30 commit 6ad7f3e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/Cabal-Linux.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ jobs:
1717
name: "GHC"
1818
runs-on: ubuntu-latest
1919
strategy:
20+
fail-fast: false
2021
matrix:
21-
ghc: [ "9.0", "8.8" ]
22+
ghc:
23+
[ "8.8"
24+
, "9.0"
25+
]
2226
steps:
2327

2428
- name: "Git checkout"
@@ -55,15 +59,12 @@ jobs:
5559
key: ${{ runner.os }}-Cabal-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
5660
restore-keys: ${{ runner.os }}-Cabal-${{ matrix.ghc }}-
5761

58-
# 2022-01-06: NOTE: remove `--allow-newer hashable` after `relude` updates to `hashable` 1.4
5962
- name: "Build"
60-
run: cabal v2-build $cabalConfig --allow-newer hashable
63+
run: cabal v2-build $cabalConfig
6164

62-
# 2022-01-06: NOTE: remove `--allow-newer hashable` after `relude` updates to `hashable` 1.4
6365
- name: "Tests"
6466
run: cabal v2-test $cabalConfig
6567

66-
# 2022-01-06: NOTE: remove `--allow-newer hashable` after `relude` updates to `hashable` 1.4
6768
- name: "Haddock"
6869
if: ${{ matrix.ghc == '9.0' }}
6970
run: cabal v2-haddock $cabalConfig

0 commit comments

Comments
 (0)