add GHC 9.0 support

This commit is contained in:
Anton-Latukha 2021-07-08 00:41:05 +03:00
parent 32f98be25d
commit 2b23c67c31
No known key found for this signature in database
GPG Key ID: 3D84C07E91802E41
3 changed files with 6 additions and 6 deletions

View File

@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ghc: [ "8.10", "8.6" ]
ghc: [ "9.0", "8.8" ]
steps:
- name: "Git checkout"
@ -62,9 +62,9 @@ jobs:
run: cabal v2-test $cabalConfig
- name: "Haddock"
if: ${{ matrix.ghc == '8.10' }}
if: ${{ matrix.ghc == '9.0' }}
run: cabal v2-haddock $cabalConfig
- name: "Source distribution file"
if: ${{ matrix.ghc == '8.10' }}
if: ${{ matrix.ghc == '9.0' }}
run: cabal v2-sdist

View File

@ -15,11 +15,11 @@ jobs:
build10:
name: "GHC"
runs-on: macOS-latest
runs-on: macos-latest
strategy:
matrix:
# It is dev env, so trying to stick to last GHC.
ghc: [ "8.10" ]
ghc: [ "9.0" ]
steps:
- name: "Git checkout"

View File

@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
# Since CI by default tests boundary GHCs, test middle versions of GHCs
ghc: [ "8.8" ]
ghc: [ "9.0" ]
steps:
- name: "Git checkout"
uses: actions/checkout@v2