Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rudymatela committed Jan 25, 2024
2 parents 05a71cd + 94fa196 commit 9a851a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Builds and tests this Haskell project on "GitHub Actions"
#
# 2021-2023 Rudy Matela
# 2021-2024 Rudy Matela
#
# some docs: https://github.com/haskell/actions/tree/main/setup
# some docs: https://github.com/haskell-actions/setup
#
# The official haskell docker image: https://hub.docker.com/_/haskell
name: build
Expand Down Expand Up @@ -63,6 +63,8 @@ jobs:
strategy:
matrix:
ghc:
- '9.8'
- '9.6'
- '9.4'
- '9.2'
- '9.0'
Expand Down Expand Up @@ -120,7 +122,7 @@ jobs:
needs: build-and-test
steps:
- name: Setup Haskell's GHC and Cabal as required by current Stackage LTS
uses: haskell/actions/setup@v2
uses: haskell-actions/setup@v2
with: # lts-19.19
ghc-version: '9.0.2'
cabal-version: '3.4'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BENCHS = \
bench/tiers
GHCIMPORTDIRS = src:test
GHCFLAGS = -v0 -O2 $(shell grep -q "Arch Linux" /etc/lsb-release && echo -dynamic) \
-W -fno-warn-unused-matches -Werror
-W -fno-warn-unused-matches
HUGSIMPORTDIRS = .:./src:./test:./etc/hugs-backports:/usr/lib/hugs/packages/*
HUGSFLAGS = -98 -h32M

Expand Down
4 changes: 3 additions & 1 deletion leancheck.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ extra-source-files: .gitignore
, test/diff/*.out
, test/diff/eg/*.out
, test/sdist
tested-with: GHC==9.4
tested-with: GHC==9.8
, GHC==9.6
, GHC==9.4
, GHC==9.2
, GHC==9.0
, GHC==8.10
Expand Down

0 comments on commit 9a851a9

Please sign in to comment.