Skip to content

Commit

Permalink
Test on GHC 9.2 and 9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rudymatela committed Aug 22, 2022
1 parent e0c3e8b commit 22a68c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ jobs:
steps:
- name: Setup Haskell's GHC and Cabal as required by current Stackage LTS
uses: haskell/actions/setup@v1
with: # lts-18.14
ghc-version: '8.10.7'
cabal-version: '3.2'
with: # lts-19.19
ghc-version: '9.0.2'
cabal-version: '3.4'

- uses: actions/cache@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ EGS = \
eg/minimal
BENCHS =
GHCIMPORTDIRS = src
GHCFLAGS = -O2 $(shell grep -q "Arch Linux" /etc/lsb-release && echo -dynamic)
GHCFLAGS = -O2 $(shell grep -q "Arch Linux" /etc/lsb-release && echo -dynamic -package test-framework)
HADDOCKFLAGS = \
$(shell grep -q "Arch Linux" /etc/lsb-release && echo --optghc=-dynamic)
$(shell grep -q "Arch Linux" /etc/lsb-release && echo --optghc=-dynamic '--optghc="-package test-framework"')

all: mk/toplibs

Expand Down
4 changes: 2 additions & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resolver: lts-18.14 # or ghc-8.10.7
resolver: lts-19.19 # or ghc-9.0.2

packages:
- .

extra-deps:
- leancheck-0.9.10
- leancheck-1.0.0

0 comments on commit 22a68c8

Please sign in to comment.