Skip to content

Commit 976b7f2

Browse files
Merge #964: GHC 9.0 support
This showed to me the power of the cleaning & organization of the code. I expected there is something complex about the update. But in reality - all that was needed is the order of the code. Good that I love preparation & to order the code before doing work. Was largely by the sheer intuition organizing & organizing it, right until GHC 9.0 worked.
2 parents 71c85f6 + 2b23c67 commit 976b7f2

File tree

11 files changed

+235
-222
lines changed

11 files changed

+235
-222
lines changed

.github/workflows/Cabal-Linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
ghc: [ "8.10", "8.6" ]
21+
ghc: [ "9.0", "8.8" ]
2222
steps:
2323

2424
- name: "Git checkout"
@@ -62,9 +62,9 @@ jobs:
6262
run: cabal v2-test $cabalConfig
6363

6464
- name: "Haddock"
65-
if: ${{ matrix.ghc == '8.10' }}
65+
if: ${{ matrix.ghc == '9.0' }}
6666
run: cabal v2-haddock $cabalConfig
6767

6868
- name: "Source distribution file"
69-
if: ${{ matrix.ghc == '8.10' }}
69+
if: ${{ matrix.ghc == '9.0' }}
7070
run: cabal v2-sdist

.github/workflows/Cabal-macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515

1616
build10:
1717
name: "GHC"
18-
runs-on: macOS-latest
18+
runs-on: macos-latest
1919
strategy:
2020
matrix:
2121
# It is dev env, so trying to stick to last GHC.
22-
ghc: [ "8.10" ]
22+
ghc: [ "9.0" ]
2323
steps:
2424

2525
- name: "Git checkout"

.github/workflows/On-Release-Cabal-Linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
# Since CI by default tests boundary GHCs, test middle versions of GHCs
19-
ghc: [ "8.8" ]
19+
ghc: [ "9.0" ]
2020
steps:
2121
- name: "Git checkout"
2222
uses: actions/checkout@v2

0 commit comments

Comments
 (0)